aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_build.cpp
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/src/commands_build.cpp
parent1d8099fd8cdad4ebbd8297a474bc7c7c0768660e (diff)
downloadvcpkg-39d6688e028d9831ac7c8c914c80d150b2e10cb2.tar.gz
vcpkg-39d6688e028d9831ac7c8c914c80d150b2e10cb2.zip
install_plan_type -> InstallPlanType
Diffstat (limited to 'toolsrc/src/commands_build.cpp')
-rw-r--r--toolsrc/src/commands_build.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/commands_build.cpp b/toolsrc/src/commands_build.cpp
index 7376238cd..7d53c6c15 100644
--- a/toolsrc/src/commands_build.cpp
+++ b/toolsrc/src/commands_build.cpp
@@ -14,7 +14,7 @@
namespace vcpkg::Commands::Build
{
using Dependencies::package_spec_with_install_plan;
- using Dependencies::install_plan_type;
+ using Dependencies::InstallPlanType;
static const std::string OPTION_CHECKS_ONLY = "--checks-only";
@@ -148,7 +148,7 @@ namespace vcpkg::Commands::Build
unmet_dependencies.erase(
std::remove_if(unmet_dependencies.begin(), unmet_dependencies.end(), [&spec](const package_spec_with_install_plan& p)
{
- return (p.spec == spec) || (p.plan.plan_type == install_plan_type::ALREADY_INSTALLED);
+ return (p.spec == spec) || (p.plan.plan_type == InstallPlanType::ALREADY_INSTALLED);
}),
unmet_dependencies.end());