aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexPS.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/LexPS.cxx')
-rw-r--r--src/LexPS.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/LexPS.cxx b/src/LexPS.cxx
index 3c75ae554..ff4521769 100644
--- a/src/LexPS.cxx
+++ b/src/LexPS.cxx
@@ -21,6 +21,10 @@
#include "Scintilla.h"
#include "SciLexer.h"
+#ifdef SCI_NAMESPACE
+using namespace Scintilla;
+#endif
+
static inline bool IsASelfDelimitingChar(const int ch) {
return (ch == '[' || ch == ']' || ch == '{' || ch == '}' ||
ch == '/' || ch == '<' || ch == '>' ||