diff options
author | Brad King <brad.king@kitware.com> | 2016-04-29 09:40:20 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-04-29 13:58:31 -0400 |
commit | 180538c70634dd6dc7fc68b4afbc1cd288c5b5c6 (patch) | |
tree | 5467b11d2718a4f0b7f32248466a38403df84d6c /Source/cmcldeps.cxx | |
parent | 0e7bca923e65df8fda37dd50ca68c7207eb3acbe (diff) | |
download | cmake-180538c70634dd6dc7fc68b4afbc1cd288c5b5c6.tar.gz |
Source: Stabilize include order
Each source file has a logical first include file. Include it in an
isolated block so that tools that sort includes do not move them.
Diffstat (limited to 'Source/cmcldeps.cxx')
-rw-r--r-- | Source/cmcldeps.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmcldeps.cxx b/Source/cmcldeps.cxx index f3c6059b1c..3f3ec4de89 100644 --- a/Source/cmcldeps.cxx +++ b/Source/cmcldeps.cxx @@ -19,11 +19,11 @@ // /showIncludes is equivalent to -MD, not -MMD, that is, system headers are // included. +#include <cmSystemTools.h> +#include <cmsys/Encoding.hxx> #include <windows.h> #include <sstream> -#include <cmSystemTools.h> -#include <cmsys/Encoding.hxx> // We don't want any wildcard expansion. // See http://msdn.microsoft.com/en-us/library/zay8tzh6(v=vs.85).aspx |