浏览代码

LibWeb: Change enum to enum class in KeyframeEffect

Matthew Olsson 1 年之前
父节点
当前提交
2adb4c460d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Userland/Libraries/LibWeb/Animations/KeyframeEffect.cpp

+ 1 - 1
Userland/Libraries/LibWeb/Animations/KeyframeEffect.cpp

@@ -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,
 };