diff options
Diffstat (limited to 'src/LexAPDL.cxx')
-rw-r--r-- | src/LexAPDL.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/LexAPDL.cxx b/src/LexAPDL.cxx index 1cf263e50..ba6a77ca6 100644 --- a/src/LexAPDL.cxx +++ b/src/LexAPDL.cxx @@ -21,6 +21,9 @@ #include "Scintilla.h" #include "SciLexer.h" +#ifdef SCI_NAMESPACE +using namespace Scintilla; +#endif static inline bool IsAWordChar(const int ch) { return (ch < 0x80 && (isalnum(ch) || ch == '_')); |