aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-09-23 12:06:55 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2016-09-23 12:06:55 -0700
commitb2f6a769ea015f49c7061e36c8c7125dd53ca01e (patch)
tree4b0ffe20033ff206230a75936c9a500d17fbabf4 /toolsrc/include
parent0b59e6c0fb0b1b5f5adae6311553cd2f8fc7c6c8 (diff)
downloadvcpkg-b2f6a769ea015f49c7061e36c8c7125dd53ca01e.tar.gz
vcpkg-b2f6a769ea015f49c7061e36c8c7125dd53ca01e.zip
find_unment_dependencies() now works for a single package
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 94aa51f99..9dc32fc41 100644
--- a/toolsrc/include/vcpkg_Dependencies.h
+++ b/toolsrc/include/vcpkg_Dependencies.h
@@ -9,5 +9,5 @@ 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> find_unmet_dependencies(const vcpkg_paths& paths, const package_spec& spec, const StatusParagraphs& status_db);
}}