diff options
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 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); } |
