|
@@ -1,5 +1,5 @@
|
|
|
/*
|
|
|
- * Copyright (c) 2020, Linus Groh <linusg@serenityos.org>
|
|
|
+ * Copyright (c) 2020-2022, Linus Groh <linusg@serenityos.org>
|
|
|
*
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
*/
|
|
@@ -15,7 +15,7 @@ class BigIntObject final : public Object {
|
|
|
JS_OBJECT(BigIntObject, Object);
|
|
|
|
|
|
public:
|
|
|
- static BigIntObject* create(Realm&, BigInt&);
|
|
|
+ static NonnullGCPtr<BigIntObject> create(Realm&, BigInt&);
|
|
|
|
|
|
virtual ~BigIntObject() override = default;
|
|
|
|