diff options
author | Brad King <brad.king@kitware.com> | 2016-05-02 13:24:21 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-05-02 13:24:21 (GMT) |
commit | 067b21b675bde6ccbb3009fbaaba5efaa78dbea0 (patch) | |
tree | b5d16fda018cafbbdeef8587b46a323feda1374b /Modules | |
parent | 2e6684c65da317d0ffdb383bff895635c2947826 (diff) | |
parent | e1c7747253ac71a5215dd32a910b62a1fd8c561a (diff) | |
download | CMake-067b21b675bde6ccbb3009fbaaba5efaa78dbea0.zip CMake-067b21b675bde6ccbb3009fbaaba5efaa78dbea0.tar.gz CMake-067b21b675bde6ccbb3009fbaaba5efaa78dbea0.tar.bz2 |
Merge topic 'clang-format-include-order'
e1c77472 Format include directive blocks and ordering with clang-format
180538c7 Source: Stabilize include order
0e7bca92 Utilities/Release: Stabilize include order in WiX custom action
eb817be0 Tests: Stabilize include order in MFC, VSXaml, and VSWinStorePhone
eda313b4 Tests: Stabilize include order in StringFileTest
7110b754 CursesDialog: add missing cmState include
d7a5f255 Modules: Remove unused CMakeTestWatcomVersion.c file
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/CMakeTestWatcomVersion.c | 1 | ||||
-rw-r--r-- | Modules/CheckForPthreads.c | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/Modules/CMakeTestWatcomVersion.c b/Modules/CMakeTestWatcomVersion.c deleted file mode 100644 index 0343fb1..0000000 --- a/Modules/CMakeTestWatcomVersion.c +++ /dev/null @@ -1 +0,0 @@ -VERSION=__WATCOMC__ diff --git a/Modules/CheckForPthreads.c b/Modules/CheckForPthreads.c index 344c81b..9629a66 100644 --- a/Modules/CheckForPthreads.c +++ b/Modules/CheckForPthreads.c @@ -1,5 +1,5 @@ -#include <stdio.h> #include <pthread.h> +#include <stdio.h> #include <unistd.h> void* runner(void*); |