diff --git a/Userland/Libraries/LibJS/Runtime/Shape.cpp b/Userland/Libraries/LibJS/Runtime/Shape.cpp index 09c2f216dd3..f21906be0fd 100644 --- a/Userland/Libraries/LibJS/Runtime/Shape.cpp +++ b/Userland/Libraries/LibJS/Runtime/Shape.cpp @@ -117,7 +117,7 @@ Optional Shape::lookup(const StringOrSymbol& property_name) co return property; } -const HashMap& Shape::property_table() const +FLATTEN HashMap const& Shape::property_table() const { ensure_property_table(); return *m_property_table;