aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexAsm.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/LexAsm.cxx')
-rw-r--r--src/LexAsm.cxx3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/LexAsm.cxx b/src/LexAsm.cxx
index 93e0b3718..9dd4df456 100644
--- a/src/LexAsm.cxx
+++ b/src/LexAsm.cxx
@@ -23,6 +23,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 == '.' ||