summaryrefslogtreecommitdiffstats
path: root/Source/cmLoadCommandCommand.cxx
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2017-02-17 21:12:21 (GMT)
committerDaniel Pfeifer <daniel@pfeifer-mail.de>2017-02-17 21:12:21 (GMT)
commitee72803e9f2988d2cf493a6d096c2a0d483fc547 (patch)
tree44e3428043deee29849a1f9f07e7e9c387743c83 /Source/cmLoadCommandCommand.cxx
parentdbdd25bc95af100633008a31f1bbdf7146e211f7 (diff)
downloadCMake-ee72803e9f2988d2cf493a6d096c2a0d483fc547.zip
CMake-ee72803e9f2988d2cf493a6d096c2a0d483fc547.tar.gz
CMake-ee72803e9f2988d2cf493a6d096c2a0d483fc547.tar.bz2
fix some include-what-you-use diagnostics
Diffstat (limited to 'Source/cmLoadCommandCommand.cxx')
-rw-r--r--Source/cmLoadCommandCommand.cxx13
1 files changed, 6 insertions, 7 deletions
diff --git a/Source/cmLoadCommandCommand.cxx b/Source/cmLoadCommandCommand.cxx
index 39e5684..5cf1853 100644
--- a/Source/cmLoadCommandCommand.cxx
+++ b/Source/cmLoadCommandCommand.cxx
@@ -2,22 +2,21 @@
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmLoadCommandCommand.h"
+#include <signal.h>
+#include <sstream>
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
#include "cmCPluginAPI.cxx"
#include "cmCPluginAPI.h"
#include "cmDynamicLoader.h"
#include "cmMakefile.h"
-#include "cmPolicies.h"
#include "cmState.h"
#include "cmSystemTools.h"
class cmExecutionStatus;
-#include <signal.h>
-#include <sstream>
-#include <stdio.h>
-#include <stdlib.h>
-#include <string.h>
-
#ifdef __QNX__
#include <malloc.h> /* for malloc/free on QNX */
#endif