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