From ebf8213945060c646e8074bcdf2b9463bcd44216 Mon Sep 17 00:00:00 2001 From: Robert Schumacher Date: Wed, 18 Mar 2020 11:19:25 -0700 Subject: [vcpkg] Use enum class for RestoreResult --- toolsrc/include/vcpkg/binarycaching.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'toolsrc/include') 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 -- cgit v1.2.3