diff options
Diffstat (limited to 'src/LexKix.cxx')
-rw-r--r-- | src/LexKix.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/LexKix.cxx b/src/LexKix.cxx index e439d4d1d..06e7c1791 100644 --- a/src/LexKix.cxx +++ b/src/LexKix.cxx @@ -20,6 +20,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 || isalnum(ch) || ch == '_'; |