From 7a6935a2ff85178e1059ca07132a1fff9e55eab2 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 1 Aug 2022 18:52:35 +0200 Subject: [PATCH] LibJS: Remove unused ShapeWithoutGlobalObject constructor mechanism --- Userland/Libraries/LibJS/Runtime/Shape.h | 3 --- 1 file changed, 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);