diff options
author | Vitaly Stakhovsky <vvs31415@gitlab.org> | 2018-01-23 01:47:53 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-01-23 16:10:04 (GMT) |
commit | 25243014e5367108604e03682b04dd5ec1e93673 (patch) | |
tree | 768fba75536e0f500660b05a4050a21d16099925 /Source/cmAddExecutableCommand.cxx | |
parent | b058d92b33ab37a56ac4dcf2f1e49aec89f554e3 (diff) | |
download | CMake-25243014e5367108604e03682b04dd5ec1e93673.zip CMake-25243014e5367108604e03682b04dd5ec1e93673.tar.gz CMake-25243014e5367108604e03682b04dd5ec1e93673.tar.bz2 |
cmMakefile: use std::string in more methods; cleanup c_str()s
Follow up commit 969c1f94ae (cmSourceGroup: code improvements; use
std::string and C++11 loops, 2017-01-10).
Diffstat (limited to 'Source/cmAddExecutableCommand.cxx')
-rw-r--r-- | Source/cmAddExecutableCommand.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmAddExecutableCommand.cxx b/Source/cmAddExecutableCommand.cxx index b9e200a..2e95032 100644 --- a/Source/cmAddExecutableCommand.cxx +++ b/Source/cmAddExecutableCommand.cxx @@ -164,7 +164,7 @@ bool cmAddExecutableCommand::InitialPass(std::vector<std::string> const& args, std::vector<std::string> srclists(s, args.end()); cmTarget* tgt = - this->Makefile->AddExecutable(exename.c_str(), srclists, excludeFromAll); + this->Makefile->AddExecutable(exename, srclists, excludeFromAll); if (use_win32) { tgt->SetProperty("WIN32_EXECUTABLE", "ON"); } |