aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-03 16:22:51 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-04 16:44:44 -0700
commit3992d3ac643fa7d7794a53a83f54a4d27769ef3c (patch)
tree66c376b9856f171f4b5bc0aba3347adc05cdcd91 /toolsrc/include
parent39d6688e028d9831ac7c8c914c80d150b2e10cb2 (diff)
downloadvcpkg-3992d3ac643fa7d7794a53a83f54a4d27769ef3c.tar.gz
vcpkg-3992d3ac643fa7d7794a53a83f54a4d27769ef3c.zip
install_plan_action -> InstallPlanAction
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg_Dependencies.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/toolsrc/include/vcpkg_Dependencies.h b/toolsrc/include/vcpkg_Dependencies.h
index ea52ede7e..ab2094bed 100644
--- a/toolsrc/include/vcpkg_Dependencies.h
+++ b/toolsrc/include/vcpkg_Dependencies.h
@@ -22,14 +22,14 @@ namespace vcpkg::Dependencies
ALREADY_INSTALLED
};
- struct install_plan_action
+ struct InstallPlanAction
{
- install_plan_action();
- 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;
+ InstallPlanAction();
+ InstallPlanAction(const InstallPlanType& plan_type, optional<BinaryParagraph> binary_pgh, optional<SourceParagraph> source_pgh);
+ InstallPlanAction(const InstallPlanAction&) = delete;
+ InstallPlanAction(InstallPlanAction&&) = default;
+ InstallPlanAction& operator=(const InstallPlanAction&) = delete;
+ InstallPlanAction& operator=(InstallPlanAction&&) = default;
InstallPlanType plan_type;
optional<BinaryParagraph> binary_pgh;
@@ -38,10 +38,10 @@ namespace vcpkg::Dependencies
struct package_spec_with_install_plan
{
- package_spec_with_install_plan(const PackageSpec& spec, install_plan_action&& plan);
+ package_spec_with_install_plan(const PackageSpec& spec, InstallPlanAction&& plan);
PackageSpec spec;
- install_plan_action plan;
+ InstallPlanAction plan;
};
enum class remove_plan_type