diff options
author | Lenny Maiorani <lenny@serenityos.org> | 2022-03-14 10:25:06 -0600 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-03-16 16:19:40 +0000 |
commit | d00b79568faef7c89b4be94b6f2a9390073ede5b (patch) | |
tree | b4d5b6391cba5d504d4b1097a63542c6e529734f /Userland/Libraries/LibJS/Runtime/ReflectObject.cpp | |
parent | 07c7827dee4550ca16b4b6985b221e364b658cad (diff) | |
download | serenity-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/ReflectObject.cpp')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/ReflectObject.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/ReflectObject.cpp b/Userland/Libraries/LibJS/Runtime/ReflectObject.cpp index f784d39c1d..6646d73e24 100644 --- a/Userland/Libraries/LibJS/Runtime/ReflectObject.cpp +++ b/Userland/Libraries/LibJS/Runtime/ReflectObject.cpp @@ -43,10 +43,6 @@ void ReflectObject::initialize(GlobalObject& global_object) define_direct_property(*vm.well_known_symbol_to_string_tag(), js_string(vm, vm.names.Reflect.as_string()), Attribute::Configurable); } -ReflectObject::~ReflectObject() -{ -} - // 28.1.1 Reflect.apply ( target, thisArgument, argumentsList ), https://tc39.es/ecma262/#sec-reflect.apply JS_DEFINE_NATIVE_FUNCTION(ReflectObject::apply) { |