[Cmake-commits] CMake branch, next, updated. v3.6.1-1302-g1cca31b

Daniel Pfeifer daniel at pfeifer-mail.de
Wed Aug 17 18:32:08 EDT 2016


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  1cca31b2f5b2ac7ba21711fbe612b37d1ecc6b6c (commit)
       via  ccb9a992dc78d04112075f4667792c89239b74d1 (commit)
      from  951bc07441bdf29dde92ff7e0a58ec5b21a847f5 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=1cca31b2f5b2ac7ba21711fbe612b37d1ecc6b6c
commit 1cca31b2f5b2ac7ba21711fbe612b37d1ecc6b6c
Merge: 951bc07 ccb9a99
Author:     Daniel Pfeifer <daniel at pfeifer-mail.de>
AuthorDate: Wed Aug 17 18:32:07 2016 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Aug 17 18:32:07 2016 -0400

    Merge topic 'include-what-you-use' into next
    
    ccb9a992 fixup! fix a batch of include-what-you-use violations


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=ccb9a992dc78d04112075f4667792c89239b74d1
commit ccb9a992dc78d04112075f4667792c89239b74d1
Author:     Daniel Pfeifer <daniel at pfeifer-mail.de>
AuthorDate: Thu Aug 18 00:31:49 2016 +0200
Commit:     Daniel Pfeifer <daniel at pfeifer-mail.de>
CommitDate: Thu Aug 18 00:31:49 2016 +0200

    fixup! fix a batch of include-what-you-use violations

diff --git a/Source/cmArchiveWrite.cxx b/Source/cmArchiveWrite.cxx
index fa5a08e..0504f70 100644
--- a/Source/cmArchiveWrite.cxx
+++ b/Source/cmArchiveWrite.cxx
@@ -18,9 +18,9 @@
 #include <cmsys/Directory.hxx>
 #include <cmsys/Encoding.hxx>
 #include <cmsys/FStream.hxx>
+#include <iostream>
 #include <string.h>
 #include <time.h>
-#include <iostream>
 
 #ifndef __LA_SSIZE_T
 #define __LA_SSIZE_T la_ssize_t
diff --git a/Source/cmArchiveWrite.h b/Source/cmArchiveWrite.h
index c859453..120453b 100644
--- a/Source/cmArchiveWrite.h
+++ b/Source/cmArchiveWrite.h
@@ -14,8 +14,8 @@
 
 #include <cmConfigure.h> // IWYU pragma: keep
 
-#include <stddef.h>
 #include <iosfwd>
+#include <stddef.h>
 #include <string>
 
 #if !defined(CMAKE_BUILD_WITH_CMAKE)
diff --git a/Source/cmCacheManager.cxx b/Source/cmCacheManager.cxx
index 386c39a..5b76162 100644
--- a/Source/cmCacheManager.cxx
+++ b/Source/cmCacheManager.cxx
@@ -16,12 +16,12 @@
 #include "cmVersion.h"
 #include "cmake.h"
 
+#include <algorithm>
 #include <cmsys/FStream.hxx>
 #include <cmsys/Glob.hxx>
+#include <sstream>
 #include <stdio.h>
 #include <string.h>
-#include <algorithm>
-#include <sstream>
 
 cmCacheManager::cmCacheManager()
 {
diff --git a/Source/cmCommonTargetGenerator.cxx b/Source/cmCommonTargetGenerator.cxx
index f65e2fb..6167e2c 100644
--- a/Source/cmCommonTargetGenerator.cxx
+++ b/Source/cmCommonTargetGenerator.cxx
@@ -11,8 +11,8 @@
 ============================================================================*/
 #include "cmCommonTargetGenerator.h"
 
-#include <cmConfigure.h>
 #include <algorithm>
+#include <cmConfigure.h>
 #include <set>
 #include <sstream>
 #include <utility>
diff --git a/Source/cmComputeLinkDepends.cxx b/Source/cmComputeLinkDepends.cxx
index 644f4a9..98405cf 100644
--- a/Source/cmComputeLinkDepends.cxx
+++ b/Source/cmComputeLinkDepends.cxx
@@ -22,12 +22,12 @@
 #include "cmTarget.h"
 #include "cmake.h"
 
-#include <assert.h>
-#include <stdio.h>
-#include <string.h>
 #include <algorithm>
+#include <assert.h>
 #include <iterator>
 #include <sstream>
+#include <stdio.h>
+#include <string.h>
 #include <utility>
 
 /*
diff --git a/Source/cmComputeLinkInformation.cxx b/Source/cmComputeLinkInformation.cxx
index 96c36f1..82877f3 100644
--- a/Source/cmComputeLinkInformation.cxx
+++ b/Source/cmComputeLinkInformation.cxx
@@ -25,10 +25,10 @@
 #include "cmTarget.h"
 #include "cmake.h"
 
-#include <ctype.h>
-#include <string.h>
 #include <algorithm>
+#include <ctype.h>
 #include <sstream>
+#include <string.h>
 #include <utility>
 
 //#define CM_COMPUTE_LINK_INFO_DEBUG
diff --git a/Source/cmComputeTargetDepends.cxx b/Source/cmComputeTargetDepends.cxx
index 8b89e33..dd07300 100644
--- a/Source/cmComputeTargetDepends.cxx
+++ b/Source/cmComputeTargetDepends.cxx
@@ -26,8 +26,8 @@
 #include "cmake.h"
 
 #include <assert.h>
-#include <stdio.h>
 #include <sstream>
+#include <stdio.h>
 #include <utility>
 
 class cmListFileBacktrace;

-----------------------------------------------------------------------

Summary of changes:
 Source/cmArchiveWrite.cxx           |    2 +-
 Source/cmArchiveWrite.h             |    2 +-
 Source/cmCacheManager.cxx           |    4 ++--
 Source/cmCommonTargetGenerator.cxx  |    2 +-
 Source/cmComputeLinkDepends.cxx     |    6 +++---
 Source/cmComputeLinkInformation.cxx |    4 ++--
 Source/cmComputeTargetDepends.cxx   |    2 +-
 7 files changed, 11 insertions(+), 11 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list