diff options
author | nyamatongwe <devnull@localhost> | 2010-07-13 21:38:26 +1000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2010-07-13 21:38:26 +1000 |
commit | d4d3f82cc71c64c05ce6efdcb61164092da51c2b (patch) | |
tree | 6c40f786e5ebf67016364b2dcdb1c15ee67ee1da /src/CharClassify.h | |
parent | c6f21af4f42c480d20729ce0d285cee6e94ffcbb (diff) | |
download | scintilla-mirror-d4d3f82cc71c64c05ce6efdcb61164092da51c2b.tar.gz |
Files changed for new lexer design.
Diffstat (limited to 'src/CharClassify.h')
-rw-r--r-- | src/CharClassify.h | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/src/CharClassify.h b/src/CharClassify.h index d746fe02d..e8b798ecb 100644 --- a/src/CharClassify.h +++ b/src/CharClassify.h @@ -8,6 +8,10 @@ #ifndef CHARCLASSIFY_H #define CHARCLASSIFY_H +#ifdef SCI_NAMESPACE +namespace Scintilla { +#endif + class CharClassify { public: CharClassify(); @@ -23,15 +27,8 @@ private: unsigned char charClass[maxChar]; // not type cc to save space }; -// These functions are implemented because each platform calls them something different. -int CompareCaseInsensitive(const char *a, const char *b); -int CompareNCaseInsensitive(const char *a, const char *b, size_t len); - -inline char MakeUpperCase(char ch) { - if (ch < 'a' || ch > 'z') - return ch; - else - return static_cast<char>(ch - 'a' + 'A'); +#ifdef SCI_NAMESPACE } +#endif #endif |