diff options
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/Symbol.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/Symbol.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/Symbol.h b/Userland/Libraries/LibJS/Runtime/Symbol.h index a991f6fbdd..de42c38c6b 100644 --- a/Userland/Libraries/LibJS/Runtime/Symbol.h +++ b/Userland/Libraries/LibJS/Runtime/Symbol.h @@ -17,7 +17,7 @@ class Symbol final : public Cell { public: Symbol(Optional<String>, bool); - virtual ~Symbol(); + virtual ~Symbol() = default; String description() const { return m_description.value_or(""); } const Optional<String>& raw_description() const { return m_description; } |