diff options
Diffstat (limited to 'lexers/LexCOBOL.cxx')
| -rw-r--r-- | lexers/LexCOBOL.cxx | 16 | 
1 files changed, 10 insertions, 6 deletions
| diff --git a/lexers/LexCOBOL.cxx b/lexers/LexCOBOL.cxx index 05bf1d973..b9c8f4dc3 100644 --- a/lexers/LexCOBOL.cxx +++ b/lexers/LexCOBOL.cxx @@ -10,18 +10,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 "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; | 
