LibJS: Convert NumberObject::create() to NonnullGCPtr

This commit is contained in:
Linus Groh 2022-12-13 20:49:50 +00:00
commit f990095728
Notes: sideshowbarker 2024-07-17 07:11:12 +09:00
3 changed files with 4 additions and 4 deletions

View file

@ -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;