diff options
author | Brad King <brad.king@kitware.com> | 2016-06-07 12:34:04 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2016-06-07 12:34:04 (GMT) |
commit | 633d99dc6255901c2fbc9f7c80a1d24f357a4024 (patch) | |
tree | ec0a1ec94525c7471caa1966a55e1946511b90f4 /Tests | |
parent | 14de21d7d21db8aa177327f61e51c7c50a7e1ffa (diff) | |
parent | fa277b29e41a8de43913f0a63b273bb3dbc759e8 (diff) | |
download | CMake-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.cxx | 3 |
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 = |