aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
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/include
parentd85e169c054c0702ec6cd2deedff58eaf49dcfab (diff)
downloadvcpkg-21f69a44bead8c4ffe6719131172512519afe3aa.tar.gz
vcpkg-21f69a44bead8c4ffe6719131172512519afe3aa.zip
[Dependencies] Function rename
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg_Dependencies.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/include/vcpkg_Dependencies.h b/toolsrc/include/vcpkg_Dependencies.h
index d8709e0bb..556ac8750 100644
--- a/toolsrc/include/vcpkg_Dependencies.h
+++ b/toolsrc/include/vcpkg_Dependencies.h
@@ -9,7 +9,7 @@ namespace vcpkg {namespace Dependencies
{
std::vector<package_spec> create_dependency_ordered_install_plan(const vcpkg_paths& paths, const std::vector<package_spec>& specs, const StatusParagraphs& status_db);
- std::unordered_set<package_spec> find_unmet_dependencies(const vcpkg_paths& paths, const std::vector<package_spec>& specs, const StatusParagraphs& status_db);
+ std::unordered_set<package_spec> get_unmet_dependencies(const vcpkg_paths& paths, const std::vector<package_spec>& specs, const StatusParagraphs& status_db);
std::vector<std::string> get_unmet_package_build_dependencies(const vcpkg_paths& paths, const package_spec& spec, const StatusParagraphs& status_db);
}}