From 66e6e6e9e21c9fe6cfb46e42841345b65ebed05c Mon Sep 17 00:00:00 2001 From: Alexander Karatarakis Date: Fri, 7 Apr 2017 13:03:11 -0700 Subject: Add RequestType to InstallPlan --- toolsrc/include/vcpkg_Dependencies.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'toolsrc/include') diff --git a/toolsrc/include/vcpkg_Dependencies.h b/toolsrc/include/vcpkg_Dependencies.h index 6e7d73d8b..0e629ffef 100644 --- a/toolsrc/include/vcpkg_Dependencies.h +++ b/toolsrc/include/vcpkg_Dependencies.h @@ -27,13 +27,14 @@ namespace vcpkg::Dependencies struct InstallPlanAction { InstallPlanAction(); - InstallPlanAction(const InstallPlanType& plan_type, Optional binary_pgh, Optional source_pgh); + InstallPlanAction(const InstallPlanType& plan_type, const RequestType& request_type, Optional binary_pgh, Optional source_pgh); InstallPlanAction(const InstallPlanAction&) = delete; InstallPlanAction(InstallPlanAction&&) = default; InstallPlanAction& operator=(const InstallPlanAction&) = delete; InstallPlanAction& operator=(InstallPlanAction&&) = default; InstallPlanType plan_type; + RequestType request_type; Optional binary_pgh; Optional source_pgh; }; @@ -64,7 +65,6 @@ namespace vcpkg::Dependencies RemovePlanAction& operator=(const RemovePlanAction&) = delete; RemovePlanAction& operator=(RemovePlanAction&&) = default; - RemovePlanType plan_type; RequestType request_type; }; -- cgit v1.2.3