diff options
Diffstat (limited to 'lexers/LexInno.cxx')
-rw-r--r-- | lexers/LexInno.cxx | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/lexers/LexInno.cxx b/lexers/LexInno.cxx index 6d1102c65..4b617125d 100644 --- a/lexers/LexInno.cxx +++ b/lexers/LexInno.cxx @@ -7,19 +7,22 @@ #include <stdlib.h> #include <string.h> -#include <ctype.h> #include <stdio.h> #include <stdarg.h> +#include <assert.h> +#include <ctype.h> -#include "Platform.h" +#include "ILexer.h" +#include "Scintilla.h" +#include "SciLexer.h" -#include "CharClassify.h" -#include "PropSet.h" +#include "PropSetSimple.h" +#include "WordList.h" +#include "LexAccessor.h" #include "Accessor.h" #include "StyleContext.h" -#include "KeyWords.h" -#include "Scintilla.h" -#include "SciLexer.h" +#include "CharacterSet.h" +#include "LexerModule.h" #ifdef SCI_NAMESPACE using namespace Scintilla; |