diff options
author | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-11-22 23:41:44 (GMT) |
---|---|---|
committer | Daniel Pfeifer <daniel@pfeifer-mail.de> | 2016-11-22 23:41:44 (GMT) |
commit | aeff60e44c203dd67b316a6c6eab1454a408e1f7 (patch) | |
tree | 34dbccb2e3606214d78a08a7af8776e38f7995b7 /Source/cmMachO.cxx | |
parent | a6fe714eaa6e25c2a661c3ec57f7eb8b8dbadede (diff) | |
download | CMake-aeff60e44c203dd67b316a6c6eab1454a408e1f7.zip CMake-aeff60e44c203dd67b316a6c6eab1454a408e1f7.tar.gz CMake-aeff60e44c203dd67b316a6c6eab1454a408e1f7.tar.bz2 |
iwyu: Fix OSX specific issues
Diffstat (limited to 'Source/cmMachO.cxx')
-rw-r--r-- | Source/cmMachO.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/cmMachO.cxx b/Source/cmMachO.cxx index 95518f9..586e6c6 100644 --- a/Source/cmMachO.cxx +++ b/Source/cmMachO.cxx @@ -1,10 +1,12 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying file Copyright.txt or https://cmake.org/licensing for details. */ -#include "cmStandardIncludes.h" // to get CMAKE_USE_MACH_PARSER first - #include "cmMachO.h" +#include <algorithm> #include <cmsys/FStream.hxx> +#include <stddef.h> +#include <string> +#include <vector> // Include the Mach-O format information system header. #include <mach-o/fat.h> |