diff options
author | Ben Boeckel <ben.boeckel@kitware.com> | 2023-07-27 18:59:17 (GMT) |
---|---|---|
committer | Ben Boeckel <ben.boeckel@kitware.com> | 2023-07-28 00:15:51 (GMT) |
commit | 1159cdc2354ab1f2eb8bcd76782fd464c715fcaa (patch) | |
tree | 368b584f74fd81d75fef96df4f245d6e0347497b /Source | |
parent | 46f71720fe4064cc6a309c9dd9bd05060bda0667 (diff) | |
download | CMake-1159cdc2354ab1f2eb8bcd76782fd464c715fcaa.zip CMake-1159cdc2354ab1f2eb8bcd76782fd464c715fcaa.tar.gz CMake-1159cdc2354ab1f2eb8bcd76782fd464c715fcaa.tar.bz2 |
cmVisualStudioWCEPlatformParser: combine character pushbacks
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmVisualStudioWCEPlatformParser.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/cmVisualStudioWCEPlatformParser.cxx b/Source/cmVisualStudioWCEPlatformParser.cxx index f13457f..8aa5384 100644 --- a/Source/cmVisualStudioWCEPlatformParser.cxx +++ b/Source/cmVisualStudioWCEPlatformParser.cxx @@ -25,8 +25,7 @@ int cmVisualStudioWCEPlatformParser::ParseVersion(const char* version) } cmSystemTools::ConvertToUnixSlashes(this->VcInstallDir); cmSystemTools::ConvertToUnixSlashes(this->VsInstallDir); - this->VcInstallDir.append("/"); - this->VsInstallDir.append("/"); + this->VcInstallDir.append("//"); const std::string configFilename = cmStrCat(this->VcInstallDir, "vcpackages/WCE.VCPlatform.config"); |