diff options
author | Brad King <brad.king@kitware.com> | 2021-10-20 17:47:16 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-10-29 15:52:57 (GMT) |
commit | 3213e2595da3ce75af489a63f53b05c5560aa547 (patch) | |
tree | 5458a913a2faaf5dbf73478e00c775ae2a1e2722 /Source/cmVSSetupHelper.cxx | |
parent | 152f9978dde5ff085db28835c797827870978e9c (diff) | |
download | CMake-3213e2595da3ce75af489a63f53b05c5560aa547.zip CMake-3213e2595da3ce75af489a63f53b05c5560aa547.tar.gz CMake-3213e2595da3ce75af489a63f53b05c5560aa547.tar.bz2 |
cmVSSetupHelper: Drop unused ullVersion field
The field has not been used since commit 3fd65f5ca6 (VS: Compare VS
instance versions as strings, 2021-06-17, v3.21.0-rc1~11^2~1).
Diffstat (limited to 'Source/cmVSSetupHelper.cxx')
-rw-r--r-- | Source/cmVSSetupHelper.cxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/Source/cmVSSetupHelper.cxx b/Source/cmVSSetupHelper.cxx index 969a2c2..1b67611 100644 --- a/Source/cmVSSetupHelper.cxx +++ b/Source/cmVSSetupHelper.cxx @@ -164,17 +164,11 @@ bool cmVSSetupAPIHelper::GetVSInstanceInfo( return false; } - ULONGLONG ullVersion = 0; SmartBSTR bstrVersion; if (FAILED(pInstance->GetInstallationVersion(&bstrVersion))) { return false; } else { vsInstanceInfo.Version = std::wstring(bstrVersion); - if (FAILED(setupHelper->ParseVersion(bstrVersion, &ullVersion))) { - vsInstanceInfo.ullVersion = 0; - } else { - vsInstanceInfo.ullVersion = ullVersion; - } } // Reboot may have been required before the installation path was created. @@ -316,7 +310,6 @@ bool cmVSSetupAPIHelper::EnumerateAndChooseVSInstance() chosenInstanceInfo.Version = std::wstring(envVSVersion.begin(), envVSVersion.end()); chosenInstanceInfo.VCToolsetVersion = envVSVersion; - chosenInstanceInfo.ullVersion = std::stoi(envVSVersion); chosenInstanceInfo.IsWin10SDKInstalled = true; chosenInstanceInfo.IsWin81SDKInstalled = !envWindowsSdkDir81.empty(); return true; |