summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/RegExpObject.h
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/RegExpObject.h')
-rw-r--r--Userland/Libraries/LibJS/Runtime/RegExpObject.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/RegExpObject.h b/Userland/Libraries/LibJS/Runtime/RegExpObject.h
index 2ae2f210a7..1e76ebf7e6 100644
--- a/Userland/Libraries/LibJS/Runtime/RegExpObject.h
+++ b/Userland/Libraries/LibJS/Runtime/RegExpObject.h
@@ -42,7 +42,7 @@ public:
String escape_regexp_pattern() const;
virtual void initialize(GlobalObject&) override;
- virtual ~RegExpObject() override;
+ virtual ~RegExpObject() override = default;
const String& pattern() const { return m_pattern; }
const String& flags() const { return m_flags; }