diff options
author | Brad King <brad.king@kitware.com> | 2016-05-02 19:05:39 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-05-03 14:08:41 (GMT) |
commit | 7b6ffa59b12aaa11f435578cb67e59570bef0453 (patch) | |
tree | d8e29759dae5046e8271aa1934b4c433ae139c8d /Source/CTest/cmCTestGIT.cxx | |
parent | be14fe4857299ccd5918e6b1f8db0f0587db2850 (diff) | |
download | CMake-7b6ffa59b12aaa11f435578cb67e59570bef0453.zip CMake-7b6ffa59b12aaa11f435578cb67e59570bef0453.tar.gz CMake-7b6ffa59b12aaa11f435578cb67e59570bef0453.tar.bz2 |
Source: Sort includes of sys/types.h as clang-format would
When this header is included in blocks where order does not matter, just
place it in lexicographic order as clang-format would by default.
Diffstat (limited to 'Source/CTest/cmCTestGIT.cxx')
-rw-r--r-- | Source/CTest/cmCTestGIT.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestGIT.cxx b/Source/CTest/cmCTestGIT.cxx index 3ff12c1..19d869c 100644 --- a/Source/CTest/cmCTestGIT.cxx +++ b/Source/CTest/cmCTestGIT.cxx @@ -19,8 +19,8 @@ #include <cmsys/Process.h> #include <cmsys/RegularExpression.hxx> -#include <sys/types.h> #include <ctype.h> +#include <sys/types.h> #include <time.h> //---------------------------------------------------------------------------- |