aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_installation.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-11-07 16:38:49 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2016-11-07 16:38:49 -0800
commit8be5e7c123d241cd4a71d03acdf43ceccf57ded2 (patch)
tree11577074b220ebec94fac7e37a49e89307bbd0bf /toolsrc/src/commands_installation.cpp
parent5c769e462b377ce06ad46998794a189f3a1b55bc (diff)
downloadvcpkg-8be5e7c123d241cd4a71d03acdf43ceccf57ded2.tar.gz
vcpkg-8be5e7c123d241cd4a71d03acdf43ceccf57ded2.zip
Move Dependency-related functions from vcpkg.h to vcpkg_Dependencies.h
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 b5f4e1a5d..d8ac974b3 100644
--- a/toolsrc/src/commands_installation.cpp
+++ b/toolsrc/src/commands_installation.cpp
@@ -141,7 +141,7 @@ namespace vcpkg
Input::check_triplet(spec.target_triplet(), paths);
// Explicitly load and use the portfile's build dependencies when resolving the build command (instead of a cached package's dependencies).
- auto first_level_deps = get_unmet_package_build_dependencies(paths, spec, status_db);
+ auto first_level_deps = Dependencies::get_unmet_package_build_dependencies(paths, spec, status_db);
std::vector<package_spec> first_level_deps_specs;
for (auto&& dep : first_level_deps)
{