summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/Array.cpp
diff options
context:
space:
mode:
authorLenny Maiorani <lenny@serenityos.org>2022-03-14 10:25:06 -0600
committerLinus Groh <mail@linusgroh.de>2022-03-16 16:19:40 +0000
commitd00b79568faef7c89b4be94b6f2a9390073ede5b (patch)
treeb4d5b6391cba5d504d4b1097a63542c6e529734f /Userland/Libraries/LibJS/Runtime/Array.cpp
parent07c7827dee4550ca16b4b6985b221e364b658cad (diff)
downloadserenity-d00b79568faef7c89b4be94b6f2a9390073ede5b.zip
Libraries: Use default constructors/destructors in LibJS
https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#cother-other-default-operation-rules "The compiler is more likely to get the default semantics right and you cannot implement these functions better than the compiler."
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/Array.cpp')
-rw-r--r--Userland/Libraries/LibJS/Runtime/Array.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/Array.cpp b/Userland/Libraries/LibJS/Runtime/Array.cpp
index d5dde14d17..51128f3f97 100644
--- a/Userland/Libraries/LibJS/Runtime/Array.cpp
+++ b/Userland/Libraries/LibJS/Runtime/Array.cpp
@@ -52,10 +52,6 @@ Array::Array(Object& prototype)
{
}
-Array::~Array()
-{
-}
-
// 10.4.2.4 ArraySetLength ( A, Desc ), https://tc39.es/ecma262/#sec-arraysetlength
ThrowCompletionOr<bool> Array::set_length(PropertyDescriptor const& property_descriptor)
{