Include the two headers in an isolated block with a comment separating them so that tools that re-order includes do not re-order these.
@@ -17,6 +17,7 @@
#include <cmInstalledFile.h>
#include <sys/types.h>
+// include sys/stat.h after sys/types.h
#include <sys/stat.h>
cmWIXFilesSourceWriter::cmWIXFilesSourceWriter(cmCPackLog* logger,
@@ -761,6 +761,7 @@ std::string cmCPackDebGenerator::GetComponentInstallDirNameSuffix(
*/
#include <stdio.h>
@@ -18,8 +18,10 @@
#include "cmSystemTools.h"
#include "cmake.h"
-#include <sys/types.h>
#include <cmsys/FStream.hxx>
+
+#include <sys/types.h>
//----------------------------------------------------------------------
@@ -28,8 +28,10 @@
#endif
#undef GetCurrentDirectory
#include <assert.h>
#include <cmsys/Directory.hxx>
@@ -13,9 +13,10 @@
#include <cstdlib>
#include <cstring>
+#include <sstream>
-#include <sstream>
//----------------------------------------------------------------------------
@@ -14,6 +14,7 @@
// cmLibraryCommand
@@ -99,11 +99,12 @@
# include "cmGlobalXCodeGenerator.h"
# define CMAKE_USE_XCODE 1
# endif
-# include <sys/types.h>
# include <sys/resource.h>
# include <sys/time.h>
#include <sys/stat.h> // struct stat
#include <list>