summaryrefslogtreecommitdiffstats
path: root/Source/cmHexFileConverter.cxx
diff options
context:
space:
mode:
authorDaniel Pfeifer <daniel@pfeifer-mail.de>2016-11-05 20:40:14 (GMT)
committerBrad King <brad.king@kitware.com>2016-11-08 14:42:04 (GMT)
commit2e620f0b3834e5a612a38d61b7e50a561d7f11e8 (patch)
treeda56275afc1e4ec1de87169729c99f62fa1ea4c2 /Source/cmHexFileConverter.cxx
parentf52bcc2ac1b3dddeca2320d8320a9406101c732d (diff)
downloadCMake-2e620f0b3834e5a612a38d61b7e50a561d7f11e8.zip
CMake-2e620f0b3834e5a612a38d61b7e50a561d7f11e8.tar.gz
CMake-2e620f0b3834e5a612a38d61b7e50a561d7f11e8.tar.bz2
Fix several include-what-you-use findings
Diffstat (limited to 'Source/cmHexFileConverter.cxx')
-rw-r--r--Source/cmHexFileConverter.cxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/cmHexFileConverter.cxx b/Source/cmHexFileConverter.cxx
index db855d2..d9d6598 100644
--- a/Source/cmHexFileConverter.cxx
+++ b/Source/cmHexFileConverter.cxx
@@ -2,11 +2,12 @@
file Copyright.txt or https://cmake.org/licensing for details. */
#include "cmHexFileConverter.h"
-#include "cmSystemTools.h"
-
+#include <cmConfigure.h>
#include <stdio.h>
#include <string.h>
+#include "cmSystemTools.h"
+
#define INTEL_HEX_MIN_LINE_LENGTH (1 + 8 + 2)
#define INTEL_HEX_MAX_LINE_LENGTH (1 + 8 + (256 * 2) + 2)
#define MOTOROLA_SREC_MIN_LINE_LENGTH (2 + 2 + 4 + 2)