diff options
author | Brad King <brad.king@kitware.com> | 2019-09-03 15:41:40 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-09-03 15:46:52 (GMT) |
commit | de0a2354fcd2f97b1a8f7ec98b4b623e76d88c2c (patch) | |
tree | f773e19c8d1ef669b457ad0a2fdfbb1611fd888e /Tests/CMakeLib/testString.cxx | |
parent | 1aa0a18c41eb6b8dbfc9130eb975fa9ecd6b680c (diff) | |
download | CMake-de0a2354fcd2f97b1a8f7ec98b4b623e76d88c2c.zip CMake-de0a2354fcd2f97b1a8f7ec98b4b623e76d88c2c.tar.gz CMake-de0a2354fcd2f97b1a8f7ec98b4b623e76d88c2c.tar.bz2 |
IWYU: Add missing cstddef includes for size_t and nullptr_t
The IWYU tool we use for CI now diagnoses these.
Diffstat (limited to 'Tests/CMakeLib/testString.cxx')
-rw-r--r-- | Tests/CMakeLib/testString.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Tests/CMakeLib/testString.cxx b/Tests/CMakeLib/testString.cxx index af5e41e..075892f 100644 --- a/Tests/CMakeLib/testString.cxx +++ b/Tests/CMakeLib/testString.cxx @@ -6,6 +6,7 @@ #include "cm_static_string_view.hxx" #include "cm_string_view.hxx" +#include <cstddef> #include <cstring> #include <iostream> #include <iterator> |