summaryrefslogtreecommitdiffstats
path: root/Source/cmGeneratorTarget.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2019-08-26 14:37:11 (GMT)
committerKitware Robot <kwrobot@kitware.com>2019-08-26 14:49:10 (GMT)
commit37c671570c4b344d66eb522ab2b63686550f993b (patch)
treea750e9e4185162f8af26131e9b4b316acae5272a /Source/cmGeneratorTarget.cxx
parent8685d0d2911f01fb7e2d26a2fd904dbf73712ce4 (diff)
parent3b2b02825d88a045d08b8295927652cbcff408a8 (diff)
downloadCMake-37c671570c4b344d66eb522ab2b63686550f993b.zip
CMake-37c671570c4b344d66eb522ab2b63686550f993b.tar.gz
CMake-37c671570c4b344d66eb522ab2b63686550f993b.tar.bz2
Merge topic 'source_sweep_ostringstream_single'
3b2b02825d Source sweep: Replace std::ostringstream when used with a single append Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !3726
Diffstat (limited to 'Source/cmGeneratorTarget.cxx')
-rw-r--r--Source/cmGeneratorTarget.cxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/cmGeneratorTarget.cxx b/Source/cmGeneratorTarget.cxx
index 2284ea5..3048c5f 100644
--- a/Source/cmGeneratorTarget.cxx
+++ b/Source/cmGeneratorTarget.cxx
@@ -3287,10 +3287,9 @@ std::vector<BT<std::string>> cmGeneratorTarget::GetCompileDefinitions(
if (configProp) {
switch (this->Makefile->GetPolicyStatus(cmPolicies::CMP0043)) {
case cmPolicies::WARN: {
- std::ostringstream e;
- e << cmPolicies::GetPolicyWarning(cmPolicies::CMP0043);
- this->LocalGenerator->IssueMessage(MessageType::AUTHOR_WARNING,
- e.str());
+ this->LocalGenerator->IssueMessage(
+ MessageType::AUTHOR_WARNING,
+ cmPolicies::GetPolicyWarning(cmPolicies::CMP0043));
CM_FALLTHROUGH;
}
case cmPolicies::OLD: {