aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexCSS.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/LexCSS.cxx')
-rw-r--r--src/LexCSS.cxx4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/LexCSS.cxx b/src/LexCSS.cxx
index 963a7b3ef..f5c112d6f 100644
--- a/src/LexCSS.cxx
+++ b/src/LexCSS.cxx
@@ -22,6 +22,10 @@
#include "Scintilla.h"
#include "SciLexer.h"
+#ifdef SCI_NAMESPACE
+using namespace Scintilla;
+#endif
+
static inline bool IsAWordChar(const unsigned int ch) {
return (isalnum(ch) || ch == '-' || ch == '_' || ch >= 161); // _ is not in fact correct CSS word-character