diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2016-12-16 19:40:58 -0800 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2016-12-16 19:40:58 -0800 |
| commit | aad0cc4c042aad87b2b52eded0e465ed01e799c1 (patch) | |
| tree | 1650d84c1cb415906fe9b2b60bd0ce4981c1095f /toolsrc/src/commands_integration.cpp | |
| parent | b666e90c32e58a673331b303e64e299cc1168aa2 (diff) | |
| download | vcpkg-aad0cc4c042aad87b2b52eded0e465ed01e799c1.tar.gz vcpkg-aad0cc4c042aad87b2b52eded0e465ed01e799c1.zip | |
Files::get_contents() -> Files::read_contents()
Diffstat (limited to 'toolsrc/src/commands_integration.cpp')
| -rw-r--r-- | toolsrc/src/commands_integration.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/commands_integration.cpp b/toolsrc/src/commands_integration.cpp index 31f30f216..e7e5b2d8d 100644 --- a/toolsrc/src/commands_integration.cpp +++ b/toolsrc/src/commands_integration.cpp @@ -173,7 +173,7 @@ namespace vcpkg bool should_install_system = true; if (fs::exists(system_wide_targets_file)) { - auto system_wide_file_contents = Files::get_contents(system_wide_targets_file); + auto system_wide_file_contents = Files::read_contents(system_wide_targets_file); if (auto contents_data = system_wide_file_contents.get()) { std::regex re(R"###(<!-- version (\d+) -->)###"); |
