diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2023-07-27 18:39:37 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2023-07-27 23:10:39 (GMT) |
commit | a5ba00bdf875cb1290b90abb8c9f55c1b7f88876 (patch) | |
tree | acfcd3adec5158ed3c5eb4882ee05fb4d1bf6bfa /Source/cmGlobalVisualStudio71Generator.cxx | |
parent | 3f1378fbcab72a849908bbc988254f392d04c41a (diff) | |
download | CMake-a5ba00bdf875cb1290b90abb8c9f55c1b7f88876.zip CMake-a5ba00bdf875cb1290b90abb8c9f55c1b7f88876.tar.gz CMake-a5ba00bdf875cb1290b90abb8c9f55c1b7f88876.tar.bz2 |
strings: combine string 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 bcb26cc..01f4803 100644 --- a/Source/cmGlobalVisualStudio71Generator.cxx +++ b/Source/cmGlobalVisualStudio71Generator.cxx @@ -136,9 +136,9 @@ void cmGlobalVisualStudio71Generator::WriteProject(std::ostream& fout, << uname << ".vcproj" << "\", \"{" << this->GetGUID(uname) << "}\"\n" << "\tProjectSection(ProjectDependencies) = postProject\n" - << "\t\t{" << guid << "} = {" << guid << "}\n" - << "\tEndProjectSection\n" - << "EndProject\n"; + "\t\t{" << guid << "} = {" << guid << "}\n" + "\tEndProjectSection\n" + "EndProject\n"; /* clang-format on */ } } |