aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
Diffstat (limited to 'toolsrc/include')
-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 0b6e26b76..44d9034f5 100644
--- a/toolsrc/include/StatusParagraph.h
+++ b/toolsrc/include/StatusParagraph.h
@@ -13,7 +13,7 @@ namespace vcpkg
INSTALLED,
};
- enum class want_t
+ enum class Want
{
error,
unknown,
@@ -29,7 +29,7 @@ namespace vcpkg
explicit StatusParagraph(const std::unordered_map<std::string, std::string>& fields);
BinaryParagraph package;
- want_t want;
+ Want want;
InstallState state;
};
@@ -37,5 +37,5 @@ namespace vcpkg
std::string to_string(InstallState f);
- std::string to_string(want_t f);
+ std::string to_string(Want f);
}