diff options
author | Brad King <brad.king@kitware.com> | 2021-03-12 11:33:51 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-03-12 11:33:51 (GMT) |
commit | 09f59da7f09ef864c592cb7e3ffd26373ae2f705 (patch) | |
tree | 376332c6e4b8e4a45fa5e1a820413d8212eb87a0 /Source/cmGlobalVisualStudio10Generator.cxx | |
parent | acdbf64047d1c7e84ec673c92407a0840d9b7230 (diff) | |
download | CMake-09f59da7f09ef864c592cb7e3ffd26373ae2f705.zip CMake-09f59da7f09ef864c592cb7e3ffd26373ae2f705.tar.gz CMake-09f59da7f09ef864c592cb7e3ffd26373ae2f705.tar.bz2 |
cmGlobalVisualStudioVersionedGenerator: Clarify local variable name
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 7794df3..7011333 100644 --- a/Source/cmGlobalVisualStudio10Generator.cxx +++ b/Source/cmGlobalVisualStudio10Generator.cxx @@ -302,16 +302,16 @@ bool cmGlobalVisualStudio10Generator::SetGeneratorToolset( // If a specific minor version of the toolset was requested, verify that it // is compatible to the major version and that is exists on disk. // If not clear the value. - std::string version = this->GeneratorToolsetVersion; + std::string versionToolset = this->GeneratorToolsetVersion; cmsys::RegularExpression regex("[0-9][0-9]\\.[0-9][0-9]"); - if (regex.find(version)) { - version = "v" + version.erase(2, 1); + if (regex.find(versionToolset)) { + versionToolset = "v" + versionToolset.erase(2, 1); } else { // Version not recognized. Clear it. - version.clear(); + versionToolset.clear(); } - if (!cmHasPrefix(version, this->GetPlatformToolsetString())) { + if (!cmHasPrefix(versionToolset, this->GetPlatformToolsetString())) { std::ostringstream e; /* clang-format off */ e << |