diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2023-07-19 20:32:33 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2023-07-19 20:32:33 (GMT) |
commit | 2a74f641dbb6edb2468d836d9c0152e87f44957a (patch) | |
tree | b64da3a9a2d389a007a5a85ba96a9824d14dd02e /Source/cmGlobalGenerator.cxx | |
parent | cfdb5c970c45b9e98d34ef72a036842f033d2cf8 (diff) | |
download | CMake-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.cxx | 2 |
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, " |