diff options
Diffstat (limited to 'src/LexVerilog.cxx')
-rw-r--r-- | src/LexVerilog.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/LexVerilog.cxx b/src/LexVerilog.cxx index 43ef7eb37..165537346 100644 --- a/src/LexVerilog.cxx +++ b/src/LexVerilog.cxx @@ -21,6 +21,10 @@ #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 == '_' || ch == '\''); } |