diff options
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/Value.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/Value.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/Value.h b/Userland/Libraries/LibJS/Runtime/Value.h index f4ca977faa..22b7b49282 100644 --- a/Userland/Libraries/LibJS/Runtime/Value.h +++ b/Userland/Libraries/LibJS/Runtime/Value.h @@ -330,7 +330,7 @@ inline Value js_negative_infinity() inline void Cell::Visitor::visit(Value value) { if (value.is_cell()) - visit_impl(value.as_cell()); + visit_impl(*value.as_cell()); } Value greater_than(GlobalObject&, Value lhs, Value rhs); |