aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-03 16:22:32 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-04 16:44:44 -0700
commit39d6688e028d9831ac7c8c914c80d150b2e10cb2 (patch)
tree5e87c4aa0f89b3148484f445bb7feec0fc003ef6 /toolsrc/include
parent1d8099fd8cdad4ebbd8297a474bc7c7c0768660e (diff)
downloadvcpkg-39d6688e028d9831ac7c8c914c80d150b2e10cb2.tar.gz
vcpkg-39d6688e028d9831ac7c8c914c80d150b2e10cb2.zip
install_plan_type -> InstallPlanType
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 098c9925b..ea52ede7e 100644
--- a/toolsrc/include/vcpkg_Dependencies.h
+++ b/toolsrc/include/vcpkg_Dependencies.h
@@ -14,7 +14,7 @@ namespace vcpkg::Dependencies
AUTO_SELECTED
};
- enum class install_plan_type
+ enum class InstallPlanType
{
UNKNOWN,
BUILD_AND_INSTALL,
@@ -25,13 +25,13 @@ namespace vcpkg::Dependencies
struct install_plan_action
{
install_plan_action();
- install_plan_action(const install_plan_type& plan_type, optional<BinaryParagraph> binary_pgh, optional<SourceParagraph> source_pgh);
+ install_plan_action(const InstallPlanType& plan_type, optional<BinaryParagraph> binary_pgh, optional<SourceParagraph> source_pgh);
install_plan_action(const install_plan_action&) = delete;
install_plan_action(install_plan_action&&) = default;
install_plan_action& operator=(const install_plan_action&) = delete;
install_plan_action& operator=(install_plan_action&&) = default;
- install_plan_type plan_type;
+ InstallPlanType plan_type;
optional<BinaryParagraph> binary_pgh;
optional<SourceParagraph> source_pgh;
};