diff options
| author | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-03 15:14:17 -0700 |
|---|---|---|
| committer | Alexander Karatarakis <alkarata@microsoft.com> | 2017-04-04 16:44:42 -0700 |
| commit | ab34b88f2d315b9076faaae9bde5b444c4155b1b (patch) | |
| tree | c0cb841dee218b82393de99a2f69aa4c8f76fec5 /toolsrc/src/vcpkglib.cpp | |
| parent | d33e191ce40d0ff6d4498c7ef68f943776b7008c (diff) | |
| download | vcpkg-ab34b88f2d315b9076faaae9bde5b444c4155b1b.tar.gz vcpkg-ab34b88f2d315b9076faaae9bde5b444c4155b1b.zip | |
install_state_t -> InstallState
Diffstat (limited to 'toolsrc/src/vcpkglib.cpp')
| -rw-r--r-- | toolsrc/src/vcpkglib.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/vcpkglib.cpp b/toolsrc/src/vcpkglib.cpp index ed2e026f6..3c98c745d 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 == install_state_t::not_installed && pgh->want == want_t::purge) + if (pgh->state == InstallState::not_installed && pgh->want == want_t::purge) continue; installed_packages.push_back(pgh.get()); } @@ -190,7 +190,7 @@ namespace vcpkg for (const std::unique_ptr<StatusParagraph>& pgh : status_db) { - if (pgh->state != install_state_t::installed) + if (pgh->state != InstallState::installed) { continue; } |
