Sfoglia il codice sorgente

LibJS: Remove unused variable m_has_property_table in Shape

Luke 4 anni fa
parent
commit
f5aad71c15
1 ha cambiato i file con 0 aggiunte e 1 eliminazioni
  1. 0 1
      Libraries/LibJS/Runtime/Shape.h

+ 0 - 1
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;