diff options
author | Brad King <brad.king@kitware.com> | 2016-05-02 19:03:45 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-05-03 14:08:41 (GMT) |
commit | be14fe4857299ccd5918e6b1f8db0f0587db2850 (patch) | |
tree | d304c24237d08ca072586d3f6cddbeb81d85c535 /Source/cmFileCommand.cxx | |
parent | 5e871f708907d0d70cf3f0f68da6b9cc617f376e (diff) | |
download | CMake-be14fe4857299ccd5918e6b1f8db0f0587db2850.zip CMake-be14fe4857299ccd5918e6b1f8db0f0587db2850.tar.gz CMake-be14fe4857299ccd5918e6b1f8db0f0587db2850.tar.bz2 |
Source: Stabilize include order of sys/types.h before sys/stat.h
Include the two headers in an isolated block with a comment separating
them so that tools that re-order includes do not re-order these.
Diffstat (limited to 'Source/cmFileCommand.cxx')
-rw-r--r-- | Source/cmFileCommand.cxx | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index 035b97f..575051e 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -28,8 +28,10 @@ #endif #undef GetCurrentDirectory -#include <sys/types.h> #include <assert.h> + +#include <sys/types.h> +// include sys/stat.h after sys/types.h #include <sys/stat.h> #include <cmsys/Directory.hxx> |