diff options
author | Brad King <brad.king@kitware.com> | 2019-09-03 11:41:40 -0400 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-09-03 11:46:52 -0400 |
commit | de0a2354fcd2f97b1a8f7ec98b4b623e76d88c2c (patch) | |
tree | f773e19c8d1ef669b457ad0a2fdfbb1611fd888e /Source/CPack/IFW/cmCPackIFWCommon.cxx | |
parent | 1aa0a18c41eb6b8dbfc9130eb975fa9ecd6b680c (diff) | |
download | cmake-de0a2354fcd2f97b1a8f7ec98b4b623e76d88c2c.tar.gz |
IWYU: Add missing cstddef includes for size_t and nullptr_t
The IWYU tool we use for CI now diagnoses these.
Diffstat (limited to 'Source/CPack/IFW/cmCPackIFWCommon.cxx')
-rw-r--r-- | Source/CPack/IFW/cmCPackIFWCommon.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/CPack/IFW/cmCPackIFWCommon.cxx b/Source/CPack/IFW/cmCPackIFWCommon.cxx index f9ce822c2b..aa9a4572c6 100644 --- a/Source/CPack/IFW/cmCPackIFWCommon.cxx +++ b/Source/CPack/IFW/cmCPackIFWCommon.cxx @@ -11,6 +11,7 @@ #include "cmVersionConfig.h" #include "cmXMLWriter.h" +#include <cstddef> #include <sstream> #include <utility> #include <vector> |