1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-06-01 11:28:11 +00:00

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

View file

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