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 | d3a6a0fb65f9fa6bd035bd359828ec20e2529ec4 (patch) | |
tree | b4794d82685f697d4ab9067e3f6406602cc2808a | |
parent | 091d830497d2b5cec93f50eb48ea1e4135995013 (diff) | |
download | scintilla-mirror-d3a6a0fb65f9fa6bd035bd359828ec20e2529ec4.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" |