aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/vcpkg_Dependencies.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'toolsrc/src/vcpkg_Dependencies.cpp')
-rw-r--r--toolsrc/src/vcpkg_Dependencies.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/vcpkg_Dependencies.cpp b/toolsrc/src/vcpkg_Dependencies.cpp
index 224a1222d..5ba83c698 100644
--- a/toolsrc/src/vcpkg_Dependencies.cpp
+++ b/toolsrc/src/vcpkg_Dependencies.cpp
@@ -66,7 +66,7 @@ namespace vcpkg::Dependencies
};
auto it = status_db.find(spec);
- if (it != status_db.end() && (*it)->want == want_t::install)
+ if (it != status_db.end() && (*it)->want == Want::install)
{
was_examined.emplace(spec, install_plan_action{install_plan_type::ALREADY_INSTALLED, nullopt, nullopt });
continue;
@@ -130,7 +130,7 @@ namespace vcpkg::Dependencies
for (const std::unique_ptr<StatusParagraph>& an_installed_package : status_db)
{
- if (an_installed_package->want != want_t::install)
+ if (an_installed_package->want != Want::install)
continue;
if (an_installed_package->package.spec.target_triplet() != spec.target_triplet())
continue;