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

LibJS: Convert Map::create() to NonnullGCPtr

This commit is contained in:
Linus Groh 2022-12-13 20:49:50 +00:00
parent 45f903da00
commit d48cdc7fa6
3 changed files with 4 additions and 4 deletions

View file

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