mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 19:57:45 +00:00
LibJS: Convert NumberObject::create() to NonnullGCPtr
This commit is contained in:
parent
b42e293ddd
commit
f990095728
3 changed files with 4 additions and 4 deletions
|
@ -14,7 +14,7 @@ class NumberObject : public Object {
|
|||
JS_OBJECT(NumberObject, Object);
|
||||
|
||||
public:
|
||||
static NumberObject* create(Realm&, double);
|
||||
static NonnullGCPtr<NumberObject> create(Realm&, double);
|
||||
|
||||
virtual ~NumberObject() override = default;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue