mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:57:44 +00:00
LibJS: Convert RegExpStringIterator::create() to NonnullGCPtr
This commit is contained in:
parent
cad40ec953
commit
9946e9e874
2 changed files with 3 additions and 3 deletions
|
@ -16,7 +16,7 @@ class RegExpStringIterator final : public Object {
|
|||
JS_OBJECT(RegExpStringIterator, Object);
|
||||
|
||||
public:
|
||||
static RegExpStringIterator* create(Realm&, Object& regexp_object, Utf16String string, bool global, bool unicode);
|
||||
static NonnullGCPtr<RegExpStringIterator> create(Realm&, Object& regexp_object, Utf16String string, bool global, bool unicode);
|
||||
|
||||
virtual ~RegExpStringIterator() override = default;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue