diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2020-04-28 17:22:19 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2020-04-29 15:16:44 (GMT) |
commit | 24a9fed5d9c9d341585c0e05c72909d5f3164927 (patch) | |
tree | 1ceceb23af02c13bac808a3352aec09b6da68e65 /Source/cmStringAlgorithms.cxx | |
parent | 1bf89388252370e8af78f9b6620a4e1617364bd8 (diff) | |
download | CMake-24a9fed5d9c9d341585c0e05c72909d5f3164927.zip CMake-24a9fed5d9c9d341585c0e05c72909d5f3164927.tar.gz CMake-24a9fed5d9c9d341585c0e05c72909d5f3164927.tar.bz2 |
IWYU: mark <cstddef> as needed
Newer IWYU is not seeing them as needed for `size_t`.
Diffstat (limited to 'Source/cmStringAlgorithms.cxx')
-rw-r--r-- | Source/cmStringAlgorithms.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmStringAlgorithms.cxx b/Source/cmStringAlgorithms.cxx index bb6dcd7..71d28a4 100644 --- a/Source/cmStringAlgorithms.cxx +++ b/Source/cmStringAlgorithms.cxx @@ -4,7 +4,7 @@ #include <algorithm> #include <cerrno> -#include <cstddef> +#include <cstddef> // IWYU pragma: keep #include <cstdio> #include <cstdlib> |