diff options
Diffstat (limited to 'Libraries/LibJS/Runtime/JSONObject.h')
-rw-r--r-- | Libraries/LibJS/Runtime/JSONObject.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Libraries/LibJS/Runtime/JSONObject.h b/Libraries/LibJS/Runtime/JSONObject.h index 7d097793a9..3ce62280a2 100644 --- a/Libraries/LibJS/Runtime/JSONObject.h +++ b/Libraries/LibJS/Runtime/JSONObject.h @@ -32,7 +32,8 @@ namespace JS { class JSONObject final : public Object { public: - JSONObject(); + explicit JSONObject(GlobalObject&); + virtual void initialize(Interpreter&, GlobalObject&) override; virtual ~JSONObject() override; private: |