diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-03 15:25:53 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-04 16:44:42 -0700 |
| commit | 7ca52532c25ed52430c2e3d97b2cd6ce0dd9f18e (patch) | |
| tree | ca6eb6df3a8b712b547932721f70b3f222866870 /toolsrc/src/vcpkglib.cpp | |
| parent | a742b60b4f4da8fc0d9b755b05600b75724233a9 (diff) | |
| download | vcpkg-7ca52532c25ed52430c2e3d97b2cd6ce0dd9f18e.tar.gz vcpkg-7ca52532c25ed52430c2e3d97b2cd6ce0dd9f18e.zip | |
want_t -> Want
Diffstat (limited to 'toolsrc/src/vcpkglib.cpp')
| -rw-r--r-- | toolsrc/src/vcpkglib.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toolsrc/src/vcpkglib.cpp b/toolsrc/src/vcpkglib.cpp index 92950b2e7..dcfe9aebc 100644 --- a/toolsrc/src/vcpkglib.cpp +++ b/toolsrc/src/vcpkglib.cpp @@ -176,7 +176,7 @@ namespace vcpkg std::vector<StatusParagraph*> installed_packages; for (auto&& pgh : status_db) { - if (pgh->state == InstallState::NOT_INSTALLED && pgh->want == want_t::purge) + if (pgh->state == InstallState::NOT_INSTALLED && pgh->want == Want::purge) continue; installed_packages.push_back(pgh.get()); } |
