diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2020-04-28 17:28:02 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2020-04-29 15:16:44 (GMT) |
commit | 3ac24a8a6e31be136436fc011ac94ef06b63857d (patch) | |
tree | 11652e39d9f6a4ba13eb587e65d905a9c2eba03c /Source/cmFunctionBlocker.cxx | |
parent | b745b8fd3697742d636b8bd3d7703abf6273404e (diff) | |
download | CMake-3ac24a8a6e31be136436fc011ac94ef06b63857d.zip CMake-3ac24a8a6e31be136436fc011ac94ef06b63857d.tar.gz CMake-3ac24a8a6e31be136436fc011ac94ef06b63857d.tar.bz2 |
cmFunctionBlocker: include missing header
This is needed to have `std::string::operator==` used in the code. Mark
it as such since older IWYU releases don't recognize this.
Diffstat (limited to 'Source/cmFunctionBlocker.cxx')
-rw-r--r-- | Source/cmFunctionBlocker.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmFunctionBlocker.cxx b/Source/cmFunctionBlocker.cxx index 0d8401e..643cd82 100644 --- a/Source/cmFunctionBlocker.cxx +++ b/Source/cmFunctionBlocker.cxx @@ -5,6 +5,7 @@ #include <cassert> #include <memory> // IWYU pragma: keep #include <sstream> +#include <string> // IWYU pragma: keep #include <utility> #include "cmExecutionStatus.h" |