LibWeb: Add missing virtual destructor in AnimationEffect

This commit is contained in:
Matthew Olsson 2024-02-04 19:14:22 -07:00 committed by Andreas Kling
parent 154b4d4196
commit df4be9a479
Notes: sideshowbarker 2024-07-17 05:41:34 +09:00

View File

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