summaryrefslogtreecommitdiffstats
path: root/Source/cmGlobalGenerator.cxx
diff options
context:
space:
mode:
authorBen Boeckel <ben.boeckel@kitware.com>2023-07-19 20:32:33 (GMT)
committerBen Boeckel <ben.boeckel@kitware.com>2023-07-19 20:32:33 (GMT)
commit2a74f641dbb6edb2468d836d9c0152e87f44957a (patch)
treeb64da3a9a2d389a007a5a85ba96a9824d14dd02e /Source/cmGlobalGenerator.cxx
parentcfdb5c970c45b9e98d34ef72a036842f033d2cf8 (diff)
downloadCMake-2a74f641dbb6edb2468d836d9c0152e87f44957a.zip
CMake-2a74f641dbb6edb2468d836d9c0152e87f44957a.tar.gz
CMake-2a74f641dbb6edb2468d836d9c0152e87f44957a.tar.bz2
cmGlobalGenerator: use single chars where possible
Diffstat (limited to 'Source/cmGlobalGenerator.cxx')
-rw-r--r--Source/cmGlobalGenerator.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx
index 97cb737..2ee56f1 100644
--- a/Source/cmGlobalGenerator.cxx
+++ b/Source/cmGlobalGenerator.cxx
@@ -2019,7 +2019,7 @@ void cmGlobalGenerator::CheckTargetProperties()
for (auto const& notFound : notFoundMap) {
notFoundVars += notFound.first;
notFoundVars += notFound.second;
- notFoundVars += "\n";
+ notFoundVars += '\n';
}
cmSystemTools::Error(
cmStrCat("The following variables are used in this project, "