summaryrefslogtreecommitdiffstats
path: root/Source/cmLocalGenerator.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2018-09-06 13:54:23 (GMT)
committerKitware Robot <kwrobot@kitware.com>2018-09-06 13:54:56 (GMT)
commite1ebec55d4b3e9db2c718064237707252ec4abf5 (patch)
tree6c526cc47975e057eead5be65a9506e5ee3dd824 /Source/cmLocalGenerator.cxx
parent3ecbe1987d56b905853a5fae4f5664befed0e223 (diff)
parent4d89830d7117a6fb68346d4ebe5f2f3c6d3223a0 (diff)
downloadCMake-e1ebec55d4b3e9db2c718064237707252ec4abf5.zip
CMake-e1ebec55d4b3e9db2c718064237707252ec4abf5.tar.gz
CMake-e1ebec55d4b3e9db2c718064237707252ec4abf5.tar.bz2
Merge topic 'grd-stdstring'
4d89830d71 cmMakefile: Make GetRequiredDefinition return std::string Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !2347
Diffstat (limited to 'Source/cmLocalGenerator.cxx')
-rw-r--r--Source/cmLocalGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmLocalGenerator.cxx b/Source/cmLocalGenerator.cxx
index aef9aa6..c955af6 100644
--- a/Source/cmLocalGenerator.cxx
+++ b/Source/cmLocalGenerator.cxx
@@ -1655,7 +1655,7 @@ void cmLocalGenerator::AddCompilerRequirementFlag(
std::string option_flag =
"CMAKE_" + lang + *stdIt + "_" + type + "_COMPILE_OPTION";
- const char* opt =
+ std::string const& opt =
target->Target->GetMakefile()->GetRequiredDefinition(option_flag);
std::vector<std::string> optVec;
cmSystemTools::ExpandListArgument(opt, optVec);