aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-10-16 15:26:28 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-10-16 15:26:28 -0700
commite5867d1d63606cef5c53a764e31ce05385f36497 (patch)
treea09acf4a0055eed5d3f5ed88f6574dff9b711f51 /toolsrc/src
parent558dcb32ca4ef43c35570794bf4cc4fc46f4af6c (diff)
downloadvcpkg-e5867d1d63606cef5c53a764e31ce05385f36497.tar.gz
vcpkg-e5867d1d63606cef5c53a764e31ce05385f36497.zip
CWStringView->CStringView, std::wstring->std::string
Diffstat (limited to 'toolsrc/src')
-rw-r--r--toolsrc/src/vcpkg/base/system.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/toolsrc/src/vcpkg/base/system.cpp b/toolsrc/src/vcpkg/base/system.cpp
index 730b22c43..b04f79414 100644
--- a/toolsrc/src/vcpkg/base/system.cpp
+++ b/toolsrc/src/vcpkg/base/system.cpp
@@ -366,9 +366,7 @@ namespace vcpkg::System
return Strings::to_utf8(ret);
}
#else
- Optional<std::wstring> get_registry_string(void* base_hkey,
- const CWStringView sub_key,
- const CWStringView valuename)
+ Optional<std::string> get_registry_string(void* base_hkey, const CStringView sub_key, const CStringView valuename)
{
return nullopt;
}