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

LibJS: Convert Set::create() to NonnullGCPtr

This commit is contained in:
Linus Groh 2022-12-13 20:49:50 +00:00
parent 9946e9e874
commit 1c8b700248
3 changed files with 5 additions and 5 deletions

View file

@ -17,7 +17,7 @@ class Set : public Object {
JS_OBJECT(Set, Object);
public:
static Set* create(Realm&);
static NonnullGCPtr<Set> create(Realm&);
virtual void initialize(Realm&) override;
virtual ~Set() override = default;