LibWeb: Change enum to enum class in KeyframeEffect

This commit is contained in:
Matthew Olsson 2024-05-31 08:59:51 -07:00 committed by Andreas Kling
parent 6859826e3d
commit 2adb4c460d
Notes: sideshowbarker 2024-07-17 06:09:44 +09:00

View File

@ -43,7 +43,7 @@ WebIDL::ExceptionOr<Variant<T, Vector<T>>> convert_value_to_maybe_list(JS::Realm
return TRY(value_converter(value));
}
enum AllowLists {
enum class AllowLists {
Yes,
No,
};