diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2020-04-28 17:43:15 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2020-04-29 15:16:44 (GMT) |
commit | 99663a5157bca24d0a36a82ebf64f32e56f0a3b4 (patch) | |
tree | 3ae68fefabd2473389a2aef4cfe3b2bb61a86645 /Tests/CMakeLib/testString.cxx | |
parent | 24a9fed5d9c9d341585c0e05c72909d5f3164927 (diff) | |
download | CMake-99663a5157bca24d0a36a82ebf64f32e56f0a3b4.zip CMake-99663a5157bca24d0a36a82ebf64f32e56f0a3b4.tar.gz CMake-99663a5157bca24d0a36a82ebf64f32e56f0a3b4.tar.bz2 |
IWYU: mark <cstddef> as needed
Newer IWYU is not seeing this as necessary for `_GLIBCXX_USE_CXX11_ABI`.
Diffstat (limited to 'Tests/CMakeLib/testString.cxx')
-rw-r--r-- | Tests/CMakeLib/testString.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/CMakeLib/testString.cxx b/Tests/CMakeLib/testString.cxx index 1fd3f38..48d2590 100644 --- a/Tests/CMakeLib/testString.cxx +++ b/Tests/CMakeLib/testString.cxx @@ -1,7 +1,7 @@ /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying file Copyright.txt or https://cmake.org/licensing for details. */ -#include <cstddef> +#include <cstddef> // IWYU pragma: keep #include <cstring> #include <iostream> #include <iterator> |