diff options
Diffstat (limited to 'src/LexNimrod.cxx')
-rw-r--r-- | src/LexNimrod.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/LexNimrod.cxx b/src/LexNimrod.cxx index 90c24897b..8c4d04360 100644 --- a/src/LexNimrod.cxx +++ b/src/LexNimrod.cxx @@ -22,6 +22,10 @@ #include "Scintilla.h" #include "SciLexer.h" +#ifdef SCI_NAMESPACE +using namespace Scintilla; +#endif + static inline bool IsAWordChar(int ch) { return (ch >= 0x80) || isalnum(ch) || ch == '_'; } |