diff options
author | Brad King <brad.king@kitware.com> | 2017-01-17 14:05:08 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2017-01-17 14:05:08 (GMT) |
commit | cab8f26211051a24ceb0e512660f022c9960f241 (patch) | |
tree | 9e083cbe053284ea1a6afa65227e22050003b6b2 /Source | |
parent | c9e76c3e04ad2dc4f50297451f2c38fdef7ae6b6 (diff) | |
parent | f38644527cee6d99b48930bf88e84de15d98007b (diff) | |
download | CMake-cab8f26211051a24ceb0e512660f022c9960f241.zip CMake-cab8f26211051a24ceb0e512660f022c9960f241.tar.gz CMake-cab8f26211051a24ceb0e512660f022c9960f241.tar.bz2 |
Merge topic 'cmCTestBuildHandler-fix-warning'
f3864452 cmCTestBuildHandler: Fix warning in FragmentCompare signature
Diffstat (limited to 'Source')
-rw-r--r-- | Source/CTest/cmCTestBuildHandler.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/CTest/cmCTestBuildHandler.cxx b/Source/CTest/cmCTestBuildHandler.cxx index 3bf54f0..1868a1e 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. |