diff options
author | Neil <nyamatongwe@gmail.com> | 2014-09-03 10:04:03 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2014-09-03 10:04:03 +1000 |
commit | 51a8128524fd0eb7fd459616ca61f3187fa9a821 (patch) | |
tree | 5e7f8c820125af30674ef17ff0e83c9f4c0f9fa7 | |
parent | f78653be94fd0d0670c7c487a7cc1b2143ebc9cc (diff) | |
download | scintilla-mirror-51a8128524fd0eb7fd459616ca61f3187fa9a821.tar.gz |
Normalise header inclusion order.
-rw-r--r-- | lexers/LexRegistry.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lexers/LexRegistry.cxx b/lexers/LexRegistry.cxx index 64b30d249..0f401fa4b 100644 --- a/lexers/LexRegistry.cxx +++ b/lexers/LexRegistry.cxx @@ -10,13 +10,13 @@ * */ +#include <cstdlib> #include <cassert> #include <cctype> #include <cstdio> -#include <cstdlib> -#include <map> #include <string> #include <vector> +#include <map> #include "ILexer.h" #include "Scintilla.h" |