summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-06-07 12:34:04 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2016-06-07 12:34:04 (GMT)
commit633d99dc6255901c2fbc9f7c80a1d24f357a4024 (patch)
treeec0a1ec94525c7471caa1966a55e1946511b90f4 /Tests
parent14de21d7d21db8aa177327f61e51c7c50a7e1ffa (diff)
parentfa277b29e41a8de43913f0a63b273bb3dbc759e8 (diff)
downloadCMake-633d99dc6255901c2fbc9f7c80a1d24f357a4024.zip
CMake-633d99dc6255901c2fbc9f7c80a1d24f357a4024.tar.gz
CMake-633d99dc6255901c2fbc9f7c80a1d24f357a4024.tar.bz2
Merge topic 'remove-c_str'
fa277b29 Remove c_str() calls from stream arguments. ba5fb165 call static cmOutputConverter::GetFortranFormat without object
Diffstat (limited to 'Tests')
-rw-r--r--Tests/Plugin/src/example_exe.cxx3
1 files changed, 1 insertions, 2 deletions
diff --git a/Tests/Plugin/src/example_exe.cxx b/Tests/Plugin/src/example_exe.cxx
index 857ad54..86b54f7 100644
--- a/Tests/Plugin/src/example_exe.cxx
+++ b/Tests/Plugin/src/example_exe.cxx
@@ -31,8 +31,7 @@ int main()
kwsys::DynamicLoader::LibraryHandle handle =
kwsys::DynamicLoader::OpenLibrary(libName.c_str());
if (!handle) {
- std::cerr << "Could not open plugin \"" << libName.c_str() << "\"!"
- << std::endl;
+ std::cerr << "Could not open plugin \"" << libName << "\"!" << std::endl;
return 1;
}
kwsys::DynamicLoader::SymbolPointer sym =