diff options
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/BooleanObject.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/BooleanObject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/BooleanObject.h b/Userland/Libraries/LibJS/Runtime/BooleanObject.h index a1ed7f6752..4be928dcd7 100644 --- a/Userland/Libraries/LibJS/Runtime/BooleanObject.h +++ b/Userland/Libraries/LibJS/Runtime/BooleanObject.h @@ -14,7 +14,7 @@ class BooleanObject : public Object { JS_OBJECT(BooleanObject, Object); public: - static BooleanObject* create(GlobalObject&, bool); + static BooleanObject* create(Realm&, bool); BooleanObject(bool, Object& prototype); virtual ~BooleanObject() override = default; |