aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2018-03-21 18:21:30 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2018-03-21 18:21:30 -0700
commitd45954a96b625ba1856ac97b429163a1919a3299 (patch)
tree60c6a7f848edba3e9bac3d13e28e32f2836e9c55 /toolsrc/include
parenta1a322074972b3adf45d22eb2ba1739d6249e34d (diff)
downloadvcpkg-d45954a96b625ba1856ac97b429163a1919a3299.tar.gz
vcpkg-d45954a96b625ba1856ac97b429163a1919a3299.zip
System::get_program_files() now returns Optional<fs::path>
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg/base/system.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/include/vcpkg/base/system.h b/toolsrc/include/vcpkg/base/system.h
index b2faf69bb..0d089276f 100644
--- a/toolsrc/include/vcpkg/base/system.h
+++ b/toolsrc/include/vcpkg/base/system.h
@@ -110,9 +110,9 @@ namespace vcpkg::System
std::vector<CPUArchitecture> get_supported_host_architectures();
- const fs::path& get_program_files_32_bit();
+ const Optional<fs::path>& get_program_files_32_bit();
- const fs::path& get_program_files_platform_bitness();
+ const Optional<fs::path>& get_program_files_platform_bitness();
}
namespace vcpkg::Debug