Browse Source

LibWeb: Add missing virtual destructor in AnimationEffect

Matthew Olsson 1 năm trước cách đây
mục cha
commit
df4be9a479
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      Userland/Libraries/LibWeb/Animations/AnimationEffect.h

+ 1 - 0
Userland/Libraries/LibWeb/Animations/AnimationEffect.h

@@ -132,6 +132,7 @@ public:
 
 protected:
     AnimationEffect(JS::Realm&);
+    virtual ~AnimationEffect() = default;
 
     virtual void initialize(JS::Realm&) override;