aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexFortran.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/LexFortran.cxx')
-rw-r--r--src/LexFortran.cxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/LexFortran.cxx b/src/LexFortran.cxx
index 3ab1116ea..c68c5b62f 100644
--- a/src/LexFortran.cxx
+++ b/src/LexFortran.cxx
@@ -19,6 +19,11 @@
#include "KeyWords.h"
#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 == '%');