aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-03 16:23:46 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-04 16:44:44 -0700
commit1723c4e5412ee8cbee9f9ebc8ff634f18a9f5632 (patch)
tree0387fa759be92d1aafd29e12aa89d4e25cc7405c /toolsrc/include
parentc9f4f312aede4ea8862d50d1cb4ddefe3b1a8362 (diff)
downloadvcpkg-1723c4e5412ee8cbee9f9ebc8ff634f18a9f5632.tar.gz
vcpkg-1723c4e5412ee8cbee9f9ebc8ff634f18a9f5632.zip
remove_plan_type -> RemovePlanType
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;
};