aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-03 16:21:46 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-04 16:44:44 -0700
commit1d8099fd8cdad4ebbd8297a474bc7c7c0768660e (patch)
treec6880606cf6711c7cf65da7449d548f366eb94b5 /toolsrc/include
parent6ac7eb7bfb290735e37d2497aee9a1e417e9f403 (diff)
downloadvcpkg-1d8099fd8cdad4ebbd8297a474bc7c7c0768660e.tar.gz
vcpkg-1d8099fd8cdad4ebbd8297a474bc7c7c0768660e.zip
request_type -> RequestType
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 b2633bb28..098c9925b 100644
--- a/toolsrc/include/vcpkg_Dependencies.h
+++ b/toolsrc/include/vcpkg_Dependencies.h
@@ -7,7 +7,7 @@
namespace vcpkg::Dependencies
{
- enum class request_type
+ enum class RequestType
{
UNKNOWN,
USER_REQUESTED,
@@ -54,7 +54,7 @@ namespace vcpkg::Dependencies
struct remove_plan_action
{
remove_plan_action();
- remove_plan_action(const remove_plan_type& plan_type, const request_type& request_type);
+ remove_plan_action(const remove_plan_type& 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;
@@ -62,7 +62,7 @@ namespace vcpkg::Dependencies
remove_plan_type plan_type;
- request_type request_type;
+ RequestType request_type;
};
struct package_spec_with_remove_plan