aboutsummaryrefslogtreecommitdiff
path: root/toolsrc/include
diff options
context:
space:
mode:
authorRobert Schumacher <roschuma@microsoft.com>2020-03-18 11:19:25 -0700
committerRobert Schumacher <roschuma@microsoft.com>2020-03-18 11:19:25 -0700
commitebf8213945060c646e8074bcdf2b9463bcd44216 (patch)
tree6470e30f4627e254b9880b86215fdcf0c9087a14 /toolsrc/include
parent6b55c62144b120f3c5fc0d3cd8163f309241a18a (diff)
downloadvcpkg-ebf8213945060c646e8074bcdf2b9463bcd44216.tar.gz
vcpkg-ebf8213945060c646e8074bcdf2b9463bcd44216.zip
[vcpkg] Use enum class for RestoreResult
Diffstat (limited to 'toolsrc/include')
-rw-r--r--toolsrc/include/vcpkg/binarycaching.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/toolsrc/include/vcpkg/binarycaching.h b/toolsrc/include/vcpkg/binarycaching.h
index 60b2eeab7..199b01acc 100644
--- a/toolsrc/include/vcpkg/binarycaching.h
+++ b/toolsrc/include/vcpkg/binarycaching.h
@@ -16,11 +16,11 @@ namespace vcpkg::Build
namespace vcpkg
{
- enum RestoreResult
+ enum class RestoreResult
{
- MISSING,
- SUCCESS,
- BUILD_FAILED,
+ missing,
+ success,
+ build_failed,
};
struct IBinaryProvider