diff options
Diffstat (limited to 'lexlib/LexerBase.cxx')
-rw-r--r-- | lexlib/LexerBase.cxx | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/lexlib/LexerBase.cxx b/lexlib/LexerBase.cxx index d887b3c6c..71e2601dc 100644 --- a/lexlib/LexerBase.cxx +++ b/lexlib/LexerBase.cxx @@ -5,12 +5,9 @@ // Copyright 1998-2010 by Neil Hodgson <neilh@scintilla.org> // The License.txt file describes the conditions under which this software may be distributed. -#include <stdlib.h> -#include <string.h> -#include <stdio.h> -#include <stdarg.h> -#include <assert.h> -#include <ctype.h> +#include <cstdlib> +#include <cassert> +#include <cstring> #include "ILexer.h" #include "Scintilla.h" |