From f5aad71c159fc803a1ab9f07d04bbb12ad1ab650 Mon Sep 17 00:00:00 2001 From: Luke Date: Sat, 7 Nov 2020 00:27:50 +0000 Subject: [PATCH] LibJS: Remove unused variable m_has_property_table in Shape --- Libraries/LibJS/Runtime/Shape.h | 1 - 1 file changed, 1 deletion(-) diff --git a/Libraries/LibJS/Runtime/Shape.h b/Libraries/LibJS/Runtime/Shape.h index 7f50352dec..d5464a9eba 100644 --- a/Libraries/LibJS/Runtime/Shape.h +++ b/Libraries/LibJS/Runtime/Shape.h @@ -106,7 +106,6 @@ private: PropertyAttributes m_attributes { 0 }; TransitionType m_transition_type : 6 { TransitionType::Invalid }; bool m_unique : 1 { false }; - mutable bool m_has_property_table : 1 { false }; GlobalObject& m_global_object;