1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 13:27:34 +00:00

Assistant: Make Provider ref-counted

This commit is contained in:
Rummskartoffel 2022-01-15 15:23:40 +01:00 committed by Andreas Kling
parent 5fe619de99
commit ada1d4906e
2 changed files with 7 additions and 7 deletions

View file

@ -128,7 +128,7 @@ private:
RefPtr<Gfx::Bitmap> m_bitmap;
};
class Provider {
class Provider : public RefCounted<Provider> {
public:
virtual ~Provider() = default;