diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2023-07-27 18:35:46 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2023-07-28 00:00:59 (GMT) |
commit | 809248a0c9f3c2c203399d4cefe10a23cfc53add (patch) | |
tree | ad89e2f35014818ec4260bad1d9f85176c5df56c /Source/cmGlobalVisualStudio71Generator.cxx | |
parent | 7137b1783549fb33fcc09eabdd0d77511d36c23b (diff) | |
download | CMake-809248a0c9f3c2c203399d4cefe10a23cfc53add.zip CMake-809248a0c9f3c2c203399d4cefe10a23cfc53add.tar.gz CMake-809248a0c9f3c2c203399d4cefe10a23cfc53add.tar.bz2 |
strings: use character literals where possible
Diffstat (limited to 'Source/cmGlobalVisualStudio71Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio71Generator.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmGlobalVisualStudio71Generator.cxx b/Source/cmGlobalVisualStudio71Generator.cxx index 98176b0..8375b72 100644 --- a/Source/cmGlobalVisualStudio71Generator.cxx +++ b/Source/cmGlobalVisualStudio71Generator.cxx @@ -86,7 +86,7 @@ void cmGlobalVisualStudio71Generator::WriteSolutionConfigurations( { fout << "\tGlobalSection(SolutionConfiguration) = preSolution\n"; for (std::string const& i : configs) { - fout << "\t\t" << i << " = " << i << "\n"; + fout << "\t\t" << i << " = " << i << '\n'; } fout << "\tEndGlobalSection\n"; } @@ -217,11 +217,11 @@ void cmGlobalVisualStudio71Generator::WriteProjectConfigurations( } } } - fout << "\t\t{" << guid << "}." << i << ".ActiveCfg = " << dstConfig << "|" + fout << "\t\t{" << guid << "}." << i << ".ActiveCfg = " << dstConfig << '|' << platformName << std::endl; auto ci = configsPartOfDefaultBuild.find(i); if (!(ci == configsPartOfDefaultBuild.end())) { - fout << "\t\t{" << guid << "}." << i << ".Build.0 = " << dstConfig << "|" + fout << "\t\t{" << guid << "}." << i << ".Build.0 = " << dstConfig << '|' << platformName << std::endl; } } |