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/include | |
| parent | a742b60b4f4da8fc0d9b755b05600b75724233a9 (diff) | |
| download | vcpkg-7ca52532c25ed52430c2e3d97b2cd6ce0dd9f18e.tar.gz vcpkg-7ca52532c25ed52430c2e3d97b2cd6ce0dd9f18e.zip | |
want_t -> Want
Diffstat (limited to 'toolsrc/include')
| -rw-r--r-- | toolsrc/include/StatusParagraph.h | 6 |
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); } |
