aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-03 16:24:44 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-04 16:44:45 -0700
commit4a8b2ed1cd91dd41c728f4ba03ee525e73bdfef4 (patch)
treea02c5847f48972ec6f8b350075ae62467493adfe /toolsrc/include
parent502a1fb43a7e1d8e8d45a1ac48da6e00af7978ee (diff)
downloadvcpkg-4a8b2ed1cd91dd41c728f4ba03ee525e73bdfef4.tar.gz
vcpkg-4a8b2ed1cd91dd41c728f4ba03ee525e73bdfef4.zip
package_spec_with_remove_plan -> PackageSpecWithRemovePlan
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg_Dependencies.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/toolsrc/include/vcpkg_Dependencies.h b/toolsrc/include/vcpkg_Dependencies.h
index d07412837..b734295fc 100644
--- a/toolsrc/include/vcpkg_Dependencies.h
+++ b/toolsrc/include/vcpkg_Dependencies.h
@@ -65,9 +65,9 @@ namespace vcpkg::Dependencies
RequestType request_type;
};
- struct package_spec_with_remove_plan
+ struct PackageSpecWithRemovePlan
{
- package_spec_with_remove_plan(const PackageSpec& spec, RemovePlanAction&& plan);
+ PackageSpecWithRemovePlan(const PackageSpec& spec, RemovePlanAction&& plan);
PackageSpec spec;
RemovePlanAction plan;
@@ -75,5 +75,5 @@ namespace vcpkg::Dependencies
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);
+ std::vector<PackageSpecWithRemovePlan> create_remove_plan(const std::vector<PackageSpec>& specs, const StatusParagraphs& status_db);
}