summaryrefslogtreecommitdiffstats
path: root/Source/cmListCommand.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-07-10 15:38:48 (GMT)
committerBrad King <brad.king@kitware.com>2019-07-10 15:48:56 (GMT)
commit71fbebd1dc3a24e2478bb5704d9ac20f36cbf704 (patch)
treedc884b3c88488e3aecf3c1676ad404bbc6756587 /Source/cmListCommand.cxx
parent4fc10431f06a07cd7ac1fafa7f3a8e633bea204c (diff)
downloadCMake-71fbebd1dc3a24e2478bb5704d9ac20f36cbf704.zip
CMake-71fbebd1dc3a24e2478bb5704d9ac20f36cbf704.tar.gz
CMake-71fbebd1dc3a24e2478bb5704d9ac20f36cbf704.tar.bz2
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/cmListCommand.cxx')
-rw-r--r--Source/cmListCommand.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmListCommand.cxx b/Source/cmListCommand.cxx
index 1b01ea2..e9a4a6f 100644
--- a/Source/cmListCommand.cxx
+++ b/Source/cmListCommand.cxx
@@ -7,12 +7,14 @@
#include <assert.h>
#include <functional>
#include <iterator>
+#include <memory>
#include <set>
#include <sstream>
#include <stdexcept>
#include <stdio.h>
#include <stdlib.h> // required for atoi
#include <utility>
+#include <vector>
#include "cmAlgorithms.h"
#include "cmGeneratorExpression.h"