diff options
author | Brad King <brad.king@kitware.com> | 2014-05-13 18:55:35 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-05-13 18:55:35 (GMT) |
commit | 7fa16df4d7ce963dda98a6c5d54f528db7a29037 (patch) | |
tree | 3ed99c648b9c58251a0773356ed646905b23de1b /Source/kwsys/testSystemTools.cxx | |
parent | 96e9eb1766261605ebc97009d6ace20214eaa9a4 (diff) | |
parent | 7762c57405d3b0daefc484a5e07bc24e04701615 (diff) | |
download | CMake-7fa16df4d7ce963dda98a6c5d54f528db7a29037.zip CMake-7fa16df4d7ce963dda98a6c5d54f528db7a29037.tar.gz CMake-7fa16df4d7ce963dda98a6c5d54f528db7a29037.tar.bz2 |
Merge branch 'upstream-kwsys' into update-kwsys
Diffstat (limited to 'Source/kwsys/testSystemTools.cxx')
-rw-r--r-- | Source/kwsys/testSystemTools.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/kwsys/testSystemTools.cxx b/Source/kwsys/testSystemTools.cxx index 1690fd5..69825a8 100644 --- a/Source/kwsys/testSystemTools.cxx +++ b/Source/kwsys/testSystemTools.cxx @@ -60,8 +60,8 @@ static bool CheckConvertToUnixSlashes(kwsys_stl::string input, if ( result != output ) { kwsys_ios::cerr - << "Problem with ConvertToUnixSlashes - input: " << input.c_str() - << " output: " << result.c_str() << " expected: " << output.c_str() + << "Problem with ConvertToUnixSlashes - input: " << input + << " output: " << result << " expected: " << output << kwsys_ios::endl; return false; } @@ -86,8 +86,8 @@ static bool CheckEscapeChars(kwsys_stl::string input, if (result != output) { kwsys_ios::cerr - << "Problem with CheckEscapeChars - input: " << input.c_str() - << " output: " << result.c_str() << " expected: " << output.c_str() + << "Problem with CheckEscapeChars - input: " << input + << " output: " << result << " expected: " << output << kwsys_ios::endl; return false; } |