aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_installation.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-11-07 17:06:46 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2016-11-07 17:06:46 -0800
commit21f69a44bead8c4ffe6719131172512519afe3aa (patch)
treebccf45117465d02608625da555dc4af0a4d77c83 /toolsrc/src/commands_installation.cpp
parentd85e169c054c0702ec6cd2deedff58eaf49dcfab (diff)
downloadvcpkg-21f69a44bead8c4ffe6719131172512519afe3aa.tar.gz
vcpkg-21f69a44bead8c4ffe6719131172512519afe3aa.zip
[Dependencies] Function rename
Diffstat (limited to 'toolsrc/src/commands_installation.cpp')
-rw-r--r--toolsrc/src/commands_installation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/commands_installation.cpp b/toolsrc/src/commands_installation.cpp
index d8ac974b3..917b4a219 100644
--- a/toolsrc/src/commands_installation.cpp
+++ b/toolsrc/src/commands_installation.cpp
@@ -148,7 +148,7 @@ namespace vcpkg
first_level_deps_specs.push_back(package_spec::from_name_and_triplet(dep, spec.target_triplet()).get_or_throw());
}
- std::unordered_set<package_spec> unmet_dependencies = Dependencies::find_unmet_dependencies(paths, first_level_deps_specs, status_db);
+ std::unordered_set<package_spec> unmet_dependencies = Dependencies::get_unmet_dependencies(paths, first_level_deps_specs, status_db);
if (!unmet_dependencies.empty())
{
System::println(System::color::error, "The build command requires all dependencies to be already installed.");