aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_install.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-03 16:23:23 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-04 16:44:44 -0700
commitc9f4f312aede4ea8862d50d1cb4ddefe3b1a8362 (patch)
treeb37cdf031e14a3161bbfce8b96ffa12685b0f82e /toolsrc/src/commands_install.cpp
parent3992d3ac643fa7d7794a53a83f54a4d27769ef3c (diff)
downloadvcpkg-c9f4f312aede4ea8862d50d1cb4ddefe3b1a8362.tar.gz
vcpkg-c9f4f312aede4ea8862d50d1cb4ddefe3b1a8362.zip
package_spec_with_install_plan -> PackageSpecWithInstallPlan
Diffstat (limited to 'toolsrc/src/commands_install.cpp')
-rw-r--r--toolsrc/src/commands_install.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/toolsrc/src/commands_install.cpp b/toolsrc/src/commands_install.cpp
index 227f60a9f..33cc2b677 100644
--- a/toolsrc/src/commands_install.cpp
+++ b/toolsrc/src/commands_install.cpp
@@ -11,7 +11,7 @@
namespace vcpkg::Commands::Install
{
- using Dependencies::package_spec_with_install_plan;
+ using Dependencies::PackageSpecWithInstallPlan;
using Dependencies::InstallPlanType;
static void install_and_write_listfile(const vcpkg_paths& paths, const BinaryParagraph& bpgh)
@@ -200,7 +200,7 @@ namespace vcpkg::Commands::Install
// create the plan
StatusParagraphs status_db = database_load_check(paths);
- std::vector<package_spec_with_install_plan> install_plan = Dependencies::create_install_plan(paths, specs, status_db);
+ std::vector<PackageSpecWithInstallPlan> install_plan = Dependencies::create_install_plan(paths, specs, status_db);
Checks::check_exit(VCPKG_LINE_INFO, !install_plan.empty(), "Install plan cannot be empty");
// log the plan
@@ -213,7 +213,7 @@ namespace vcpkg::Commands::Install
Metrics::track_property("installplan", specs_string);
// execute the plan
- for (const package_spec_with_install_plan& action : install_plan)
+ for (const PackageSpecWithInstallPlan& action : install_plan)
{
try
{