diff options
Diffstat (limited to 'src/LexRebol.cxx')
-rw-r--r-- | src/LexRebol.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/LexRebol.cxx b/src/LexRebol.cxx index f829c1e36..7139b8dbd 100644 --- a/src/LexRebol.cxx +++ b/src/LexRebol.cxx @@ -26,6 +26,9 @@ #include "SciLexer.h" #include "StyleContext.h" +#ifdef SCI_NAMESPACE +using namespace Scintilla; +#endif static inline bool IsAWordChar(const int ch) { return (isalnum(ch) || ch == '?' || ch == '!' || ch == '.' || ch == '\'' || ch == '+' || ch == '-' || ch == '*' || ch == '&' || ch == '|' || ch == '=' || ch == '_' || ch == '~'); |