diff options
Diffstat (limited to 'lexlib/CharacterSet.cxx')
-rw-r--r-- | lexlib/CharacterSet.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/lexlib/CharacterSet.cxx b/lexlib/CharacterSet.cxx index 0db3e41b7..791177fcc 100644 --- a/lexlib/CharacterSet.cxx +++ b/lexlib/CharacterSet.cxx @@ -11,13 +11,9 @@ #include "CharacterSet.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif -#ifdef SCI_NAMESPACE namespace Scintilla { -#endif int CompareCaseInsensitive(const char *a, const char *b) { while (*a && *b) { @@ -53,6 +49,4 @@ int CompareNCaseInsensitive(const char *a, const char *b, size_t len) { return *a - *b; } -#ifdef SCI_NAMESPACE } -#endif |