diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-03 16:27:51 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-04 16:44:45 -0700 |
| commit | 95428f53691d232d961bb136f35d096967d38d5f (patch) | |
| tree | b9ce8db97c9aa4000d839e57aca7e70ef400a18d /toolsrc/include/vcpkg_System.h | |
| parent | 9e19213498a4f77aa9b55ce1e81a3efaabfc9844 (diff) | |
| download | vcpkg-95428f53691d232d961bb136f35d096967d38d5f.tar.gz vcpkg-95428f53691d232d961bb136f35d096967d38d5f.zip | |
optional<T> -> Optional<T>
Diffstat (limited to 'toolsrc/include/vcpkg_System.h')
| -rw-r--r-- | toolsrc/include/vcpkg_System.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/include/vcpkg_System.h b/toolsrc/include/vcpkg_System.h index 2c2b945f4..e4f93ad8f 100644 --- a/toolsrc/include/vcpkg_System.h +++ b/toolsrc/include/vcpkg_System.h @@ -59,9 +59,9 @@ namespace vcpkg::System return println(c, Strings::format(messageTemplate, messageArg1, messageArgs...)); } - optional<std::wstring> get_environmental_variable(const CWStringView varname) noexcept; + Optional<std::wstring> get_environmental_variable(const CWStringView varname) noexcept; - optional<std::wstring> get_registry_string(HKEY base, const CWStringView subkey, const CWStringView valuename); + Optional<std::wstring> get_registry_string(HKEY base, const CWStringView subkey, const CWStringView valuename); const fs::path& get_ProgramFiles_32_bit(); |
