diff options
Diffstat (limited to 'lexers/LexOthers.cxx')
| -rw-r--r-- | lexers/LexOthers.cxx | 18 | 
1 files changed, 11 insertions, 7 deletions
diff --git a/lexers/LexOthers.cxx b/lexers/LexOthers.cxx index c8f6ca977..c583c93a1 100644 --- a/lexers/LexOthers.cxx +++ b/lexers/LexOthers.cxx @@ -8,19 +8,23 @@  #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 "CharClassify.h" -#include "PropSet.h" -#include "Accessor.h" -#include "KeyWords.h" +#include "ILexer.h"  #include "Scintilla.h"  #include "SciLexer.h" +#include "PropSetSimple.h" +#include "WordList.h" +#include "LexAccessor.h" +#include "Accessor.h" +#include "StyleContext.h" +#include "CharacterSet.h" +#include "LexerModule.h" +  #ifdef SCI_NAMESPACE  using namespace Scintilla;  #endif  | 
