aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
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 0ea33eabc..8cb3d5af3 100644
--- a/toolsrc/include/vcpkg_Dependencies.h
+++ b/toolsrc/include/vcpkg_Dependencies.h
@@ -44,7 +44,7 @@ namespace vcpkg::Dependencies
InstallPlanAction plan;
};
- enum class remove_plan_type
+ enum class RemovePlanType
{
UNKNOWN,
NOT_INSTALLED,
@@ -54,14 +54,14 @@ namespace vcpkg::Dependencies
struct remove_plan_action
{
remove_plan_action();
- remove_plan_action(const remove_plan_type& plan_type, const RequestType& request_type);
+ 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;
- remove_plan_type plan_type;
+ RemovePlanType plan_type;
RequestType request_type;
};