mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 10:07:44 +00:00
LibJS: Convert MapIterator::create() to NonnullGCPtr
This commit is contained in:
parent
d48cdc7fa6
commit
9846d23c79
2 changed files with 3 additions and 3 deletions
|
@ -16,7 +16,7 @@ class MapIterator final : public Object {
|
|||
JS_OBJECT(MapIterator, Object);
|
||||
|
||||
public:
|
||||
static MapIterator* create(Realm&, Map& map, Object::PropertyKind iteration_kind);
|
||||
static NonnullGCPtr<MapIterator> create(Realm&, Map& map, Object::PropertyKind iteration_kind);
|
||||
|
||||
virtual ~MapIterator() override = default;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue