summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/MathObject.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/MathObject.h')
-rw-r--r--Userland/Libraries/LibJS/Runtime/MathObject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/MathObject.h b/Userland/Libraries/LibJS/Runtime/MathObject.h
index 16b139f65a..5738f5f980 100644
--- a/Userland/Libraries/LibJS/Runtime/MathObject.h
+++ b/Userland/Libraries/LibJS/Runtime/MathObject.h
@@ -16,7 +16,7 @@ class MathObject final : public Object {
public:
explicit MathObject(GlobalObject&);
virtual void initialize(GlobalObject&) override;
- virtual ~MathObject() override;
+ virtual ~MathObject() override = default;
private:
JS_DECLARE_NATIVE_FUNCTION(abs);