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

LibJS: Convert BooleanObject::create() to NonnullGCPtr

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

View file

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