aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/src/commands_install.cpp
diff options
context:
space:
mode:
authorAlexander Karatarakis <alkarata@microsoft.com>2017-04-03 15:14:17 -0700
committerAlexander Karatarakis <alkarata@microsoft.com>2017-04-04 16:44:42 -0700
commitab34b88f2d315b9076faaae9bde5b444c4155b1b (patch)
treec0cb841dee218b82393de99a2f69aa4c8f76fec5 /toolsrc/src/commands_install.cpp
parentd33e191ce40d0ff6d4498c7ef68f943776b7008c (diff)
downloadvcpkg-ab34b88f2d315b9076faaae9bde5b444c4155b1b.tar.gz
vcpkg-ab34b88f2d315b9076faaae9bde5b444c4155b1b.zip
install_state_t -> InstallState
Diffstat (limited to 'toolsrc/src/commands_install.cpp')
-rw-r--r--toolsrc/src/commands_install.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/toolsrc/src/commands_install.cpp b/toolsrc/src/commands_install.cpp
index fd586329f..0a7b27825 100644
--- a/toolsrc/src/commands_install.cpp
+++ b/toolsrc/src/commands_install.cpp
@@ -165,7 +165,7 @@ namespace vcpkg::Commands::Install
StatusParagraph spgh;
spgh.package = binary_paragraph;
spgh.want = want_t::install;
- spgh.state = install_state_t::half_installed;
+ spgh.state = InstallState::half_installed;
for (auto&& dep : spgh.package.depends)
{
if (status_db->find_installed(dep, spgh.package.spec.target_triplet()) == status_db->end())
@@ -178,7 +178,7 @@ namespace vcpkg::Commands::Install
install_and_write_listfile(paths, spgh.package);
- spgh.state = install_state_t::installed;
+ spgh.state = InstallState::installed;
write_update(paths, spgh);
status_db->insert(std::make_unique<StatusParagraph>(spgh));
}