From 2adb4c460df0c82756ddafd95b104edde25e7054 Mon Sep 17 00:00:00 2001 From: Matthew Olsson Date: Fri, 31 May 2024 08:59:51 -0700 Subject: [PATCH] LibWeb: Change enum to enum class in KeyframeEffect --- Userland/Libraries/LibWeb/Animations/KeyframeEffect.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Libraries/LibWeb/Animations/KeyframeEffect.cpp b/Userland/Libraries/LibWeb/Animations/KeyframeEffect.cpp index dc0c457f705..447cc272f45 100644 --- a/Userland/Libraries/LibWeb/Animations/KeyframeEffect.cpp +++ b/Userland/Libraries/LibWeb/Animations/KeyframeEffect.cpp @@ -43,7 +43,7 @@ WebIDL::ExceptionOr>> convert_value_to_maybe_list(JS::Realm return TRY(value_converter(value)); } -enum AllowLists { +enum class AllowLists { Yes, No, };