aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexBaan.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/LexBaan.cxx')
-rw-r--r--src/LexBaan.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/LexBaan.cxx b/src/LexBaan.cxx
index 3a36eb8f2..a6847db71 100644
--- a/src/LexBaan.cxx
+++ b/src/LexBaan.cxx
@@ -21,6 +21,10 @@
#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 == '.' || ch == '_' || ch == '$' || ch == ':');
}