diff options
author | nyamatongwe <unknown> | 2010-07-13 21:38:26 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2010-07-13 21:38:26 +1000 |
commit | 46a09069e0fd52a121d8a5d6655d513d28198061 (patch) | |
tree | 78913d3187df5083bb4a2e8239ec598321b2597f /src/CharClassify.h | |
parent | 4a42ef938d5cc3b13f42b4a3f4e7310a6b5cbf4b (diff) | |
download | scintilla-mirror-46a09069e0fd52a121d8a5d6655d513d28198061.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 |