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:
parent
cf0a24ff0c
commit
b48fa8756f
3 changed files with 4 additions and 4 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue