From cd30cd4df9b0f9afd7aedbe970df8faab6a45a5c Mon Sep 17 00:00:00 2001 From: Alexander Karatarakis Date: Fri, 23 Sep 2016 16:26:27 -0700 Subject: parse_all_arguments_as_package_specs: remove unused parameter --- toolsrc/src/commands_installation.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'toolsrc/src/commands_installation.cpp') 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 specs = args.parse_all_arguments_as_package_specs(paths, default_target_triplet); + std::vector specs = args.parse_all_arguments_as_package_specs(default_target_triplet); std::vector 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 unmet_dependencies = Dependencies::find_unmet_dependencies(paths, spec, status_db); if (!unmet_dependencies.empty()) { -- cgit v1.2.3