Browse Source

cmCustomCommandGenerator: Fix include-what-you-use diagnostic

For `size_t` we should include `stddef.h`.
Brad King 8 years ago
parent
commit
ea7177b947
1 changed files with 2 additions and 0 deletions
  1. 2 0
      Source/cmCustomCommandGenerator.cxx

+ 2 - 0
Source/cmCustomCommandGenerator.cxx

@@ -13,6 +13,8 @@
 #include "cmSystemTools.h"
 #include "cm_auto_ptr.hxx"
 
+#include <stddef.h>
+
 cmCustomCommandGenerator::cmCustomCommandGenerator(cmCustomCommand const& cc,
                                                    const std::string& config,
                                                    cmLocalGenerator* lg)