diff options
author | Brad King <brad.king@kitware.com> | 2019-07-10 11:38:48 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-07-10 11:48:56 -0400 |
commit | 71fbebd1dc3a24e2478bb5704d9ac20f36cbf704 (patch) | |
tree | dc884b3c88488e3aecf3c1676ad404bbc6756587 /Source/cmGhsMultiTargetGenerator.cxx | |
parent | 4fc10431f06a07cd7ac1fafa7f3a8e633bea204c (diff) | |
download | cmake-71fbebd1dc3a24e2478bb5704d9ac20f36cbf704.tar.gz |
IWYU: Fix handling of <memory> standard header
An old workaround for `std::allocator_traits<>::value_type` lints from
IWYU on `std::vector<>` usage breaks IWYU's handling of `<memory>`.
Convert the workaround to use the same approach we already use for a
workaround of `std::__decay_and_strip<>::::__type` lints. Then update
the `<memory>` inclusions to follow the now-correct IWYU lints.
Diffstat (limited to 'Source/cmGhsMultiTargetGenerator.cxx')
-rw-r--r-- | Source/cmGhsMultiTargetGenerator.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmGhsMultiTargetGenerator.cxx b/Source/cmGhsMultiTargetGenerator.cxx index b80da7231f..997595ba8f 100644 --- a/Source/cmGhsMultiTargetGenerator.cxx +++ b/Source/cmGhsMultiTargetGenerator.cxx @@ -22,9 +22,11 @@ #include "cmTarget.h" #include <algorithm> +#include <memory> #include <ostream> #include <set> #include <utility> +#include <vector> cmGhsMultiTargetGenerator::cmGhsMultiTargetGenerator(cmGeneratorTarget* target) : GeneratorTarget(target) |