aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexSpecman.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/LexSpecman.cxx')
-rw-r--r--src/LexSpecman.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/LexSpecman.cxx b/src/LexSpecman.cxx
index bf5d639a1..093efae75 100644
--- a/src/LexSpecman.cxx
+++ b/src/LexSpecman.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 == '.' || ch == '_' || ch == '\'');