diff options
author | Brad King <brad.king@kitware.com> | 2021-10-21 15:48:06 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2021-10-29 15:52:58 (GMT) |
commit | 006fe1e919f3d326f9a8d749b59324b5512a0d87 (patch) | |
tree | 186ec1a47737664d8661d86f5867b7dd2ce163b6 /Source/cmVSSetupHelper.h | |
parent | f5dfc788b8bb455f7accc21a07d8a74f05651467 (diff) | |
download | CMake-006fe1e919f3d326f9a8d749b59324b5512a0d87.zip CMake-006fe1e919f3d326f9a8d749b59324b5512a0d87.tar.gz CMake-006fe1e919f3d326f9a8d749b59324b5512a0d87.tar.bz2 |
cmVSSetupHelper: Convert wide to narrow strings early
Diffstat (limited to 'Source/cmVSSetupHelper.h')
-rw-r--r-- | Source/cmVSSetupHelper.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmVSSetupHelper.h b/Source/cmVSSetupHelper.h index 5a7daa2..ad242a5 100644 --- a/Source/cmVSSetupHelper.h +++ b/Source/cmVSSetupHelper.h @@ -84,8 +84,8 @@ private: struct VSInstanceInfo { - std::wstring VSInstallLocation; - std::wstring Version; + std::string VSInstallLocation; + std::string Version; std::string VCToolsetVersion; bool IsWin10SDKInstalled = false; bool IsWin81SDKInstalled = false; |