diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/Layout/RadioButton.cpp')
-rw-r--r-- | Userland/Libraries/LibWeb/Layout/RadioButton.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/Userland/Libraries/LibWeb/Layout/RadioButton.cpp b/Userland/Libraries/LibWeb/Layout/RadioButton.cpp index 9171364cab..884ab1f4be 100644 --- a/Userland/Libraries/LibWeb/Layout/RadioButton.cpp +++ b/Userland/Libraries/LibWeb/Layout/RadioButton.cpp @@ -18,9 +18,7 @@ RadioButton::RadioButton(DOM::Document& document, HTML::HTMLInputElement& elemen set_intrinsic_height(12); } -RadioButton::~RadioButton() -{ -} +RadioButton::~RadioButton() = default; RefPtr<Painting::Paintable> RadioButton::create_paintable() const { |