diff options
Diffstat (limited to 'Userland/Libraries/LibJS/Interpreter.h')
-rw-r--r-- | Userland/Libraries/LibJS/Interpreter.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Interpreter.h b/Userland/Libraries/LibJS/Interpreter.h index f32e4e1ccb..b84b980662 100644 --- a/Userland/Libraries/LibJS/Interpreter.h +++ b/Userland/Libraries/LibJS/Interpreter.h @@ -61,7 +61,7 @@ public: ~Interpreter(); - Value run(GlobalObject&, const Program&); + void run(GlobalObject&, const Program&); GlobalObject& global_object(); const GlobalObject& global_object() const; |