diff options
Diffstat (limited to 'lexers/LexAVS.cxx')
-rw-r--r-- | lexers/LexAVS.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lexers/LexAVS.cxx b/lexers/LexAVS.cxx index 129c3563b..df5223f8d 100644 --- a/lexers/LexAVS.cxx +++ b/lexers/LexAVS.cxx @@ -24,9 +24,7 @@ #include "CharacterSet.h" #include "LexerModule.h" -#ifdef SCI_NAMESPACE using namespace Scintilla; -#endif static inline bool IsAWordChar(const int ch) { return (ch < 0x80) && (isalnum(ch) || ch == '_'); |