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/cmGlobalVisualStudio10Generator.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/cmGlobalVisualStudio10Generator.cxx')
-rw-r--r-- | Source/cmGlobalVisualStudio10Generator.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/cmGlobalVisualStudio10Generator.cxx b/Source/cmGlobalVisualStudio10Generator.cxx index 9a8e64d..41cd807 100644 --- a/Source/cmGlobalVisualStudio10Generator.cxx +++ b/Source/cmGlobalVisualStudio10Generator.cxx @@ -198,7 +198,7 @@ bool cmGlobalVisualStudio10Generator::SetGeneratorToolset( std::string versionToolset = this->GeneratorToolsetVersion; cmsys::RegularExpression regex("[0-9][0-9]\\.[0-9][0-9]"); if (regex.find(versionToolset)) { - versionToolset = cmStrCat("v", versionToolset.erase(2, 1)); + versionToolset = cmStrCat('v', versionToolset.erase(2, 1)); } else { // Version not recognized. Clear it. versionToolset.clear(); @@ -441,7 +441,7 @@ bool cmGlobalVisualStudio10Generator::InitializeSystem(cmMakefile* mf) mf->IssueMessage( MessageType::FATAL_ERROR, cmStrCat("CMAKE_SYSTEM_NAME is 'Android' but CMAKE_GENERATOR ", - "specifies a platform too: '", this->GetName(), "'")); + "specifies a platform too: '", this->GetName(), '\'')); return false; } if (mf->GetSafeDefinition("CMAKE_GENERATOR_PLATFORM") == @@ -471,7 +471,7 @@ bool cmGlobalVisualStudio10Generator::InitializeWindowsCE(cmMakefile* mf) mf->IssueMessage( MessageType::FATAL_ERROR, cmStrCat("CMAKE_SYSTEM_NAME is 'WindowsCE' but CMAKE_GENERATOR ", - "specifies a platform too: '", this->GetName(), "'")); + "specifies a platform too: '", this->GetName(), '\'')); return false; } @@ -848,7 +848,7 @@ bool cmGlobalVisualStudio10Generator::FindVCTargetsPath(cmMakefile* mf) wd = cmStrCat(this->GetCMakeInstance()->GetHomeOutputDirectory(), "/CMakeFiles"); } - wd += "/"; + wd += '/'; wd += cmVersion::GetCMakeVersion(); // We record the result persistently in a file. @@ -875,7 +875,7 @@ bool cmGlobalVisualStudio10Generator::FindVCTargetsPath(cmMakefile* mf) // Generate a project file for MSBuild to tell us the VCTargetsPath value. std::string const vcxproj = "VCTargetsPath.vcxproj"; { - std::string const vcxprojAbs = cmStrCat(wd, "/", vcxproj); + std::string const vcxprojAbs = cmStrCat(wd, '/', vcxproj); cmsys::ofstream fout(vcxprojAbs.c_str()); cmXMLWriter xw(fout); |