summaryrefslogtreecommitdiffstats
path: root/Source/CTest
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-09-03 17:16:05 (GMT)
committerKitware Robot <kwrobot@kitware.com>2019-09-03 17:16:17 (GMT)
commit711e1c3ada26d952fa6360e671379b7bf1be2f17 (patch)
treef773e19c8d1ef669b457ad0a2fdfbb1611fd888e /Source/CTest
parent72b7629956c1718ce59db8a6a0d485b166ed6fe0 (diff)
parentde0a2354fcd2f97b1a8f7ec98b4b623e76d88c2c (diff)
downloadCMake-711e1c3ada26d952fa6360e671379b7bf1be2f17.zip
CMake-711e1c3ada26d952fa6360e671379b7bf1be2f17.tar.gz
CMake-711e1c3ada26d952fa6360e671379b7bf1be2f17.tar.bz2
Merge topic 'lint-updates'
de0a2354fc IWYU: Add missing cstddef includes for size_t and nullptr_t 1aa0a18c41 cmCTestTestHandler: Re-order includes to follow our convention Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !3774
Diffstat (limited to 'Source/CTest')
-rw-r--r--Source/CTest/cmCTestTestHandler.cxx34
1 files changed, 18 insertions, 16 deletions
diff --git a/Source/CTest/cmCTestTestHandler.cxx b/Source/CTest/cmCTestTestHandler.cxx
index 9181daa..b90209e 100644
--- a/Source/CTest/cmCTestTestHandler.cxx
+++ b/Source/CTest/cmCTestTestHandler.cxx
@@ -1,22 +1,6 @@
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmCTestTestHandler.h"
-#include <algorithm>
-#include <chrono>
-#include <cmath>
-#include <cmsys/Base64.h>
-#include <cmsys/Directory.hxx>
-#include <cmsys/RegularExpression.hxx>
-#include <cstring>
-#include <functional>
-#include <iomanip>
-#include <iterator>
-#include <set>
-#include <sstream>
-#include <stdio.h>
-#include <stdlib.h>
-#include <time.h>
-#include <utility>
#include "cm_memory.hxx"
@@ -38,6 +22,24 @@
#include "cmake.h"
#include "cmsys/FStream.hxx"
+#include <algorithm>
+#include <chrono>
+#include <cmath>
+#include <cmsys/Base64.h>
+#include <cmsys/Directory.hxx>
+#include <cmsys/RegularExpression.hxx>
+#include <cstddef>
+#include <cstring>
+#include <functional>
+#include <iomanip>
+#include <iterator>
+#include <set>
+#include <sstream>
+#include <stdio.h>
+#include <stdlib.h>
+#include <time.h>
+#include <utility>
+
class cmExecutionStatus;
class cmCTestSubdirCommand : public cmCommand