diff options
author | Andreas Kling <kling@serenityos.org> | 2022-08-01 18:52:35 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2022-08-05 12:42:46 +0200 |
commit | 7a6935a2ff85178e1059ca07132a1fff9e55eab2 (patch) | |
tree | 6fcd73999a7702fd3f526ad024c27614d8030e72 /Userland/Libraries/LibJS/Runtime/Shape.h | |
parent | 69a45adfbee55141ff4a359c416f843546ac26cc (diff) | |
download | serenity-7a6935a2ff85178e1059ca07132a1fff9e55eab2.zip |
LibJS: Remove unused ShapeWithoutGlobalObject constructor mechanism
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/Shape.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/Shape.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/Shape.h b/Userland/Libraries/LibJS/Runtime/Shape.h index 9ae5166082..58f60c67c8 100644 --- a/Userland/Libraries/LibJS/Runtime/Shape.h +++ b/Userland/Libraries/LibJS/Runtime/Shape.h @@ -47,9 +47,6 @@ public: Prototype, }; - enum class ShapeWithoutGlobalObjectTag { Tag }; - - explicit Shape(ShapeWithoutGlobalObjectTag) {}; explicit Shape(Object& global_object); Shape(Shape& previous_shape, StringOrSymbol const& property_key, PropertyAttributes attributes, TransitionType); Shape(Shape& previous_shape, Object* new_prototype); |