diff options
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/BooleanObject.h')
-rw-r--r-- | Userland/Libraries/LibJS/Runtime/BooleanObject.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/BooleanObject.h b/Userland/Libraries/LibJS/Runtime/BooleanObject.h index 27fc816648..6b3ef6368b 100644 --- a/Userland/Libraries/LibJS/Runtime/BooleanObject.h +++ b/Userland/Libraries/LibJS/Runtime/BooleanObject.h @@ -16,7 +16,7 @@ public: static BooleanObject* create(GlobalObject&, bool); BooleanObject(bool, Object& prototype); - virtual ~BooleanObject() override; + virtual ~BooleanObject() override = default; bool boolean() const { return m_value; } |