diff options
Diffstat (limited to 'src/LexForth.cxx')
-rw-r--r-- | src/LexForth.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/LexForth.cxx b/src/LexForth.cxx index 3f128156d..f097b0e00 100644 --- a/src/LexForth.cxx +++ b/src/LexForth.cxx @@ -21,6 +21,10 @@ #include "Scintilla.h" #include "SciLexer.h" +#ifdef SCI_NAMESPACE +using namespace Scintilla; +#endif + bool is_whitespace(int ch){ return ch == '\n' || ch == '\r' || ch == '\t' || ch == ' '; } |