diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/XHR/ProgressEvent.h')
-rw-r--r-- | Userland/Libraries/LibWeb/XHR/ProgressEvent.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/XHR/ProgressEvent.h b/Userland/Libraries/LibWeb/XHR/ProgressEvent.h index a969864e01..cad8d1f139 100644 --- a/Userland/Libraries/LibWeb/XHR/ProgressEvent.h +++ b/Userland/Libraries/LibWeb/XHR/ProgressEvent.h @@ -32,7 +32,7 @@ public: return ProgressEvent::create(event_name, event_init); } - virtual ~ProgressEvent() override { } + virtual ~ProgressEvent() override = default; bool length_computable() const { return m_length_computable; } u32 loaded() const { return m_loaded; } |