diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2023-01-27 16:03:32 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2023-01-27 16:03:47 (GMT) |
commit | 50abdaab936e6b1a7e40d17affae03f89ac00da6 (patch) | |
tree | 7c487513ce4e7938a5ecd34afaf356d2341726e2 | |
parent | 62483b9b99647bcec8275d7b139a64e879623fcc (diff) | |
download | CMake-50abdaab936e6b1a7e40d17affae03f89ac00da6.zip CMake-50abdaab936e6b1a7e40d17affae03f89ac00da6.tar.gz CMake-50abdaab936e6b1a7e40d17affae03f89ac00da6.tar.bz2 |
IWYU: exclude `__decay_and_strip<int>` as well
-rw-r--r-- | Utilities/IWYU/mapping.imp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Utilities/IWYU/mapping.imp b/Utilities/IWYU/mapping.imp index b0ed911..d1a585a 100644 --- a/Utilities/IWYU/mapping.imp +++ b/Utilities/IWYU/mapping.imp @@ -79,6 +79,7 @@ # Use '-Xiwyu -v7' to see the fully qualified names that need this. # TODO: Can this be simplified with an @-expression? #{ symbol: [ "@std::__decay_and_strip<.*>::__type", private, "\"cmConfigure.h\"", public ] }, + { symbol: [ "std::__decay_and_strip<int>::__type", private, "\"cmConfigure.h\"", public ] }, { symbol: [ "std::__decay_and_strip<bool>::__type", private, "\"cmConfigure.h\"", public ] }, { symbol: [ "std::__decay_and_strip<char const (&)[1]>::__type", private, "\"cmConfigure.h\"", public ] }, { symbol: [ "std::__decay_and_strip<cmCommand *&>::__type", private, "\"cmConfigure.h\"", public ] }, |