1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 19:37:36 +00:00

LibJS: Convert Intrinsics::create() to NonnullGCPtr

This commit is contained in:
Linus Groh 2022-12-13 20:49:50 +00:00
parent 237402aea9
commit 45f903da00
2 changed files with 3 additions and 3 deletions

View file

@ -15,7 +15,7 @@ class Intrinsics final : public Cell {
JS_CELL(Intrinsics, Cell);
public:
static Intrinsics* create(Realm&);
static NonnullGCPtr<Intrinsics> create(Realm&);
Shape* empty_object_shape() { return m_empty_object_shape; }