diff options
author | Neil <nyamatongwe@gmail.com> | 2014-05-24 15:15:49 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2014-05-24 15:15:49 +1000 |
commit | b0296d86a48642f2f381c3e0b11a022482ae25e3 (patch) | |
tree | 799c8fa56339d4bfc62ae4d0ff8ef058a228d70b /lexers/LexCPP.cxx | |
parent | 0e25a153a1970e5b895072f265c02bac9fd7f3fa (diff) | |
download | scintilla-mirror-b0296d86a48642f2f381c3e0b11a022482ae25e3.tar.gz |
Header include statements are now in a standardised order with that order
defined in scripts/HeaderOrder.txt.
Diffstat (limited to 'lexers/LexCPP.cxx')
-rw-r--r-- | lexers/LexCPP.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexCPP.cxx b/lexers/LexCPP.cxx index e8b705b1f..b8b48aa52 100644 --- a/lexers/LexCPP.cxx +++ b/lexers/LexCPP.cxx @@ -8,10 +8,10 @@ #include <stdlib.h> #include <string.h> -#include <ctype.h> #include <stdio.h> #include <stdarg.h> #include <assert.h> +#include <ctype.h> #include <string> #include <vector> |