diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-03 16:24:18 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-04 16:44:45 -0700 |
| commit | 502a1fb43a7e1d8e8d45a1ac48da6e00af7978ee (patch) | |
| tree | b7e676fd6499a6f9ad5df43da894b1629579e726 /toolsrc/include | |
| parent | 1723c4e5412ee8cbee9f9ebc8ff634f18a9f5632 (diff) | |
| download | vcpkg-502a1fb43a7e1d8e8d45a1ac48da6e00af7978ee.tar.gz vcpkg-502a1fb43a7e1d8e8d45a1ac48da6e00af7978ee.zip | |
remove_plan_action -> RemovePlanAction
Diffstat (limited to 'toolsrc/include')
| -rw-r--r-- | toolsrc/include/vcpkg_Dependencies.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/toolsrc/include/vcpkg_Dependencies.h b/toolsrc/include/vcpkg_Dependencies.h index 8cb3d5af3..d07412837 100644 --- a/toolsrc/include/vcpkg_Dependencies.h +++ b/toolsrc/include/vcpkg_Dependencies.h @@ -51,14 +51,14 @@ namespace vcpkg::Dependencies REMOVE }; - struct remove_plan_action + struct RemovePlanAction { - remove_plan_action(); - remove_plan_action(const RemovePlanType& plan_type, const RequestType& request_type); - remove_plan_action(const remove_plan_action&) = delete; - remove_plan_action(remove_plan_action&&) = default; - remove_plan_action& operator=(const remove_plan_action&) = delete; - remove_plan_action& operator=(remove_plan_action&&) = default; + RemovePlanAction(); + RemovePlanAction(const RemovePlanType& plan_type, const RequestType& request_type); + RemovePlanAction(const RemovePlanAction&) = delete; + RemovePlanAction(RemovePlanAction&&) = default; + RemovePlanAction& operator=(const RemovePlanAction&) = delete; + RemovePlanAction& operator=(RemovePlanAction&&) = default; RemovePlanType plan_type; @@ -67,10 +67,10 @@ namespace vcpkg::Dependencies struct package_spec_with_remove_plan { - package_spec_with_remove_plan(const PackageSpec& spec, remove_plan_action&& plan); + package_spec_with_remove_plan(const PackageSpec& spec, RemovePlanAction&& plan); PackageSpec spec; - remove_plan_action plan; + RemovePlanAction plan; }; std::vector<PackageSpecWithInstallPlan> create_install_plan(const vcpkg_paths& paths, const std::vector<PackageSpec>& specs, const StatusParagraphs& status_db); |
