diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2020-04-28 17:23:05 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2020-04-29 15:16:44 (GMT) |
commit | a58457a6c273d9d7286bd9cb74477e5cf9aadc59 (patch) | |
tree | 5c6db01cea44edfaf2a495b5002fc0b65c165193 /Source/cmMakefileTargetGenerator.cxx | |
parent | 99663a5157bca24d0a36a82ebf64f32e56f0a3b4 (diff) | |
download | CMake-a58457a6c273d9d7286bd9cb74477e5cf9aadc59.zip CMake-a58457a6c273d9d7286bd9cb74477e5cf9aadc59.tar.gz CMake-a58457a6c273d9d7286bd9cb74477e5cf9aadc59.tar.bz2 |
IWYU: mark cmLinkLineComputer as necessary
IWYU is not seeing that the full declaration is necessary for
`std::unique_ptr<cmLinkLineComputer>`.
Diffstat (limited to 'Source/cmMakefileTargetGenerator.cxx')
-rw-r--r-- | Source/cmMakefileTargetGenerator.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmMakefileTargetGenerator.cxx b/Source/cmMakefileTargetGenerator.cxx index 267d5e1..84eddb8 100644 --- a/Source/cmMakefileTargetGenerator.cxx +++ b/Source/cmMakefileTargetGenerator.cxx @@ -18,7 +18,7 @@ #include "cmGeneratorExpression.h" #include "cmGeneratorTarget.h" #include "cmGlobalUnixMakefileGenerator3.h" -#include "cmLinkLineComputer.h" +#include "cmLinkLineComputer.h" // IWYU pragma: keep #include "cmLocalCommonGenerator.h" #include "cmLocalUnixMakefileGenerator3.h" #include "cmMakefile.h" |