diff options
Diffstat (limited to 'src/LexLua.cxx')
-rw-r--r-- | src/LexLua.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/LexLua.cxx b/src/LexLua.cxx index 6dfa8ee1a..63114a976 100644 --- a/src/LexLua.cxx +++ b/src/LexLua.cxx @@ -22,6 +22,10 @@ #include "Scintilla.h" #include "SciLexer.h" +#ifdef SCI_NAMESPACE +using namespace Scintilla; +#endif + // Extended to accept accented characters static inline bool IsAWordChar(int ch) { return ch >= 0x80 || |