diff options
Diffstat (limited to 'src/LexFortran.cxx')
-rw-r--r-- | src/LexFortran.cxx | 5 |
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 == '%'); |