diff options
author | Brad King <brad.king@kitware.com> | 2016-04-29 13:40:20 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-04-29 17:58:31 (GMT) |
commit | 180538c70634dd6dc7fc68b4afbc1cd288c5b5c6 (patch) | |
tree | 5467b11d2718a4f0b7f32248466a38403df84d6c /Source/cmakexbuild.cxx | |
parent | 0e7bca923e65df8fda37dd50ca68c7207eb3acbe (diff) | |
download | CMake-180538c70634dd6dc7fc68b4afbc1cd288c5b5c6.zip CMake-180538c70634dd6dc7fc68b4afbc1cd288c5b5c6.tar.gz CMake-180538c70634dd6dc7fc68b4afbc1cd288c5b5c6.tar.bz2 |
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/cmakexbuild.cxx')
-rw-r--r-- | Source/cmakexbuild.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmakexbuild.cxx b/Source/cmakexbuild.cxx index 9aaeeaa..03059f5 100644 --- a/Source/cmakexbuild.cxx +++ b/Source/cmakexbuild.cxx @@ -9,8 +9,9 @@ implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the License for more information. ============================================================================*/ -#include <cmsys/Process.h> #include "cmStandardIncludes.h" + +#include <cmsys/Process.h> #include "cmSystemTools.h" // This is a wrapper program for xcodebuild |