1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 22:57:44 +00:00

LibJS: Remove unused variable m_has_property_table in Shape

This commit is contained in:
Luke 2020-11-07 00:27:50 +00:00 committed by Andreas Kling
parent 020b782474
commit f5aad71c15

View file

@ -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;