diff options
author | Brad King <brad.king@kitware.com> | 2019-01-29 14:16:56 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2019-01-29 14:17:51 (GMT) |
commit | 90ac5e6384735deb0ac523684010b2f4701d4f4d (patch) | |
tree | 2c12e634eb7c95d4dfdf0221ae1e6b99f531b7b2 /Source/cmake.cxx | |
parent | e7be5638a04ad6e47aafaed29139c6382fdea1cb (diff) | |
parent | 186d9b083db0e3fc77d9d92821e3cf45e06271da (diff) | |
download | CMake-90ac5e6384735deb0ac523684010b2f4701d4f4d.zip CMake-90ac5e6384735deb0ac523684010b2f4701d4f4d.tar.gz CMake-90ac5e6384735deb0ac523684010b2f4701d4f4d.tar.bz2 |
Merge topic 'message-stdstring'
186d9b083d cmSystemTools::Message: Add overload accepting std::string
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !2869
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r-- | Source/cmake.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx index 10cbb6e..6127094 100644 --- a/Source/cmake.cxx +++ b/Source/cmake.cxx @@ -1252,7 +1252,7 @@ int cmake::HandleDeleteCacheVariables(const std::string& var) for (SaveCacheEntry const& i : saved) { this->AddCacheEntry(i.key, i.value.c_str(), i.help.c_str(), i.type); } - cmSystemTools::Message(warning.str().c_str()); + cmSystemTools::Message(warning.str()); // avoid reconfigure if there were errors if (!cmSystemTools::GetErrorOccuredFlag()) { // re-run configure |