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/include | |
| parent | 3992d3ac643fa7d7794a53a83f54a4d27769ef3c (diff) | |
| download | vcpkg-c9f4f312aede4ea8862d50d1cb4ddefe3b1a8362.tar.gz vcpkg-c9f4f312aede4ea8862d50d1cb4ddefe3b1a8362.zip | |
package_spec_with_install_plan -> PackageSpecWithInstallPlan
Diffstat (limited to 'toolsrc/include')
| -rw-r--r-- | toolsrc/include/vcpkg_Dependencies.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/toolsrc/include/vcpkg_Dependencies.h b/toolsrc/include/vcpkg_Dependencies.h index ab2094bed..0ea33eabc 100644 --- a/toolsrc/include/vcpkg_Dependencies.h +++ b/toolsrc/include/vcpkg_Dependencies.h @@ -36,9 +36,9 @@ namespace vcpkg::Dependencies optional<SourceParagraph> source_pgh; }; - struct package_spec_with_install_plan + struct PackageSpecWithInstallPlan { - package_spec_with_install_plan(const PackageSpec& spec, InstallPlanAction&& plan); + PackageSpecWithInstallPlan(const PackageSpec& spec, InstallPlanAction&& plan); PackageSpec spec; InstallPlanAction plan; @@ -73,7 +73,7 @@ namespace vcpkg::Dependencies remove_plan_action plan; }; - std::vector<package_spec_with_install_plan> create_install_plan(const vcpkg_paths& paths, const std::vector<PackageSpec>& specs, const StatusParagraphs& status_db); + std::vector<PackageSpecWithInstallPlan> create_install_plan(const vcpkg_paths& paths, const std::vector<PackageSpec>& specs, const StatusParagraphs& status_db); std::vector<package_spec_with_remove_plan> create_remove_plan(const std::vector<PackageSpec>& specs, const StatusParagraphs& status_db); } |
