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