diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-03 16:23:23 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-04 16:44:44 -0700 |
| commit | c9f4f312aede4ea8862d50d1cb4ddefe3b1a8362 (patch) | |
| tree | b37cdf031e14a3161bbfce8b96ffa12685b0f82e /toolsrc/src/commands_ci.cpp | |
| parent | 3992d3ac643fa7d7794a53a83f54a4d27769ef3c (diff) | |
| download | vcpkg-c9f4f312aede4ea8862d50d1cb4ddefe3b1a8362.tar.gz vcpkg-c9f4f312aede4ea8862d50d1cb4ddefe3b1a8362.zip | |
package_spec_with_install_plan -> PackageSpecWithInstallPlan
Diffstat (limited to 'toolsrc/src/commands_ci.cpp')
| -rw-r--r-- | toolsrc/src/commands_ci.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/toolsrc/src/commands_ci.cpp b/toolsrc/src/commands_ci.cpp index a25e5a469..e811779ee 100644 --- a/toolsrc/src/commands_ci.cpp +++ b/toolsrc/src/commands_ci.cpp @@ -10,7 +10,7 @@ namespace vcpkg::Commands::CI { - using Dependencies::package_spec_with_install_plan; + using Dependencies::PackageSpecWithInstallPlan; using Dependencies::InstallPlanType; using Build::BuildResult; @@ -36,7 +36,7 @@ namespace vcpkg::Commands::CI const std::vector<PackageSpec> specs = load_all_package_specs(paths.ports, target_triplet); StatusParagraphs status_db = database_load_check(paths); - const std::vector<package_spec_with_install_plan> install_plan = Dependencies::create_install_plan(paths, specs, status_db); + const 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"); std::vector<BuildResult> results; @@ -44,7 +44,7 @@ namespace vcpkg::Commands::CI const ElapsedTime timer = ElapsedTime::create_started(); size_t counter = 0; const size_t package_count = install_plan.size(); - for (const package_spec_with_install_plan& action : install_plan) + for (const PackageSpecWithInstallPlan& action : install_plan) { const ElapsedTime build_timer = ElapsedTime::create_started(); counter++; |
