summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke <luke.wilde@live.co.uk>2020-11-07 00:27:50 +0000
committerAndreas Kling <kling@serenityos.org>2020-11-07 10:09:55 +0100
commitf5aad71c159fc803a1ab9f07d04bbb12ad1ab650 (patch)
treeae14a03116d531628ecf85e436e4021c3f9e006c
parent020b782474240e4de4f908c1074c500dfac043a2 (diff)
downloadserenity-f5aad71c159fc803a1ab9f07d04bbb12ad1ab650.zip
LibJS: Remove unused variable m_has_property_table in Shape
-rw-r--r--Libraries/LibJS/Runtime/Shape.h1
1 files changed, 0 insertions, 1 deletions
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;