aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include/StatusParagraph.h
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/include/StatusParagraph.h
parentd33e191ce40d0ff6d4498c7ef68f943776b7008c (diff)
downloadvcpkg-ab34b88f2d315b9076faaae9bde5b444c4155b1b.tar.gz
vcpkg-ab34b88f2d315b9076faaae9bde5b444c4155b1b.zip
install_state_t -> InstallState
Diffstat (limited to 'toolsrc/include/StatusParagraph.h')
-rw-r--r--toolsrc/include/StatusParagraph.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/toolsrc/include/StatusParagraph.h b/toolsrc/include/StatusParagraph.h
index 1386bbdf4..f7acc467c 100644
--- a/toolsrc/include/StatusParagraph.h
+++ b/toolsrc/include/StatusParagraph.h
@@ -5,7 +5,7 @@
namespace vcpkg
{
- enum class install_state_t
+ enum class InstallState
{
error,
not_installed,
@@ -30,12 +30,12 @@ namespace vcpkg
BinaryParagraph package;
want_t want;
- install_state_t state;
+ InstallState state;
};
std::ostream& operator<<(std::ostream& os, const StatusParagraph& pgh);
- std::string to_string(install_state_t f);
+ std::string to_string(InstallState f);
std::string to_string(want_t f);
}