aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_installation.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-09-23 16:26:27 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2016-09-23 16:26:27 -0700
commitcd30cd4df9b0f9afd7aedbe970df8faab6a45a5c (patch)
tree7425b867244b116f80489c259b47bf94a9bb6075 /toolsrc/src/commands_installation.cpp
parent76149ffac5bf57882b8f7b9827f31e508da73d16 (diff)
downloadvcpkg-cd30cd4df9b0f9afd7aedbe970df8faab6a45a5c.tar.gz
vcpkg-cd30cd4df9b0f9afd7aedbe970df8faab6a45a5c.zip
parse_all_arguments_as_package_specs: remove unused parameter
Diffstat (limited to 'toolsrc/src/commands_installation.cpp')
-rw-r--r--toolsrc/src/commands_installation.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/commands_installation.cpp b/toolsrc/src/commands_installation.cpp
index 3765a9a23..49047d074 100644
--- a/toolsrc/src/commands_installation.cpp
+++ b/toolsrc/src/commands_installation.cpp
@@ -60,7 +60,7 @@ namespace vcpkg
{
StatusParagraphs status_db = database_load_check(paths);
- std::vector<package_spec> specs = args.parse_all_arguments_as_package_specs(paths, default_target_triplet);
+ std::vector<package_spec> specs = args.parse_all_arguments_as_package_specs(default_target_triplet);
std::vector<package_spec> install_plan = Dependencies::create_dependency_ordered_install_plan(paths, specs, status_db);
Checks::check_exit(!install_plan.empty(), "Install plan cannot be empty");
std::string specs_string = to_string(install_plan[0]);
@@ -119,7 +119,7 @@ namespace vcpkg
StatusParagraphs status_db = database_load_check(paths);
- const package_spec spec = args.parse_all_arguments_as_package_specs(paths, default_target_triplet).at(0);
+ const package_spec spec = args.parse_all_arguments_as_package_specs(default_target_triplet).at(0);
std::unordered_set<package_spec> unmet_dependencies = Dependencies::find_unmet_dependencies(paths, spec, status_db);
if (!unmet_dependencies.empty())
{