aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexPOV.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/LexPOV.cxx')
-rw-r--r--src/LexPOV.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/LexPOV.cxx b/src/LexPOV.cxx
index 5cc05ce6a..b845b2d47 100644
--- a/src/LexPOV.cxx
+++ b/src/LexPOV.cxx
@@ -29,6 +29,10 @@
#include "Scintilla.h"
#include "SciLexer.h"
+#ifdef SCI_NAMESPACE
+using namespace Scintilla;
+#endif
+
static inline bool IsAWordChar(int ch) {
return ch < 0x80 && (isalnum(ch) || ch == '_');
}