aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2016-11-15 11:56:46 -0800
committerAlexander Karatarakis <alkarata@microsoft.com>2016-11-15 12:47:43 -0800
commitb64b0cbc8a34e5761fbf7fda75fda49906f116ea (patch)
treea3351f072f0c404f94427a8772f23aca929ea566 /toolsrc/include
parent2b204e673914b20e662ed17f667c267690fd6b52 (diff)
downloadvcpkg-b64b0cbc8a34e5761fbf7fda75fda49906f116ea.tar.gz
vcpkg-b64b0cbc8a34e5761fbf7fda75fda49906f116ea.zip
Renames and cleanup
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 909c27771..3616e6be9 100644
--- a/toolsrc/include/vcpkg_Dependencies.h
+++ b/toolsrc/include/vcpkg_Dependencies.h
@@ -6,7 +6,7 @@
namespace vcpkg {namespace Dependencies
{
- enum class install_plan_kind
+ enum class install_plan_type
{
BUILD_AND_INSTALL,
INSTALL,
@@ -15,7 +15,7 @@ namespace vcpkg {namespace Dependencies
struct install_plan_action
{
- install_plan_kind plan;
+ install_plan_type type;
std::unique_ptr<BinaryParagraph> bpgh;
std::unique_ptr<SourceParagraph> spgh;
};
@@ -23,7 +23,7 @@ namespace vcpkg {namespace Dependencies
struct package_spec_with_install_plan
{
package_spec spec;
- install_plan_action install_plan;
+ install_plan_action plan;
};
std::vector<package_spec_with_install_plan> create_install_plan(const vcpkg_paths& paths, const std::vector<package_spec>& specs, const StatusParagraphs& status_db);