[Cmake-commits] CMake branch, next, updated. v3.7.2-2201-g2af02e7

Brad King brad.king at kitware.com
Mon Jan 16 13:53:31 EST 2017


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  2af02e78b771682ddfe50f4a0cd7a16fc021ff56 (commit)
       via  f38644527cee6d99b48930bf88e84de15d98007b (commit)
      from  4ca4583536da2da644e77805a638b52c4bee38d6 (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=2af02e78b771682ddfe50f4a0cd7a16fc021ff56
commit 2af02e78b771682ddfe50f4a0cd7a16fc021ff56
Merge: 4ca4583 f386445
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon Jan 16 13:53:30 2017 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Jan 16 13:53:30 2017 -0500

    Merge topic 'cmCTestBuildHandler-fix-warning' into next
    
    f3864452 cmCTestBuildHandler: Fix warning in FragmentCompare signature


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f38644527cee6d99b48930bf88e84de15d98007b
commit f38644527cee6d99b48930bf88e84de15d98007b
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon Jan 16 13:51:23 2017 -0500
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Mon Jan 16 13:52:17 2017 -0500

    cmCTestBuildHandler: Fix warning in FragmentCompare signature
    
    ```
    warning: the specified comparator type does not provide a const call
    operator [-Wuser-defined-warnings]
    ```
    
    Reported-by: Sean McBride <sean at rogue-research.com>

diff --git a/Source/CTest/cmCTestBuildHandler.cxx b/Source/CTest/cmCTestBuildHandler.cxx
index 3bf54f0..1868a1ee 100644
--- a/Source/CTest/cmCTestBuildHandler.cxx
+++ b/Source/CTest/cmCTestBuildHandler.cxx
@@ -506,7 +506,7 @@ public:
     : FTC(CM_NULLPTR)
   {
   }
-  bool operator()(std::string const& l, std::string const& r)
+  bool operator()(std::string const& l, std::string const& r) const
   {
     // Order files by modification time.  Use lexicographic order
     // among files with the same time.

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

Summary of changes:
 Source/CTest/cmCTestBuildHandler.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list