diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/Layout/LineBox.h')
-rw-r--r-- | Userland/Libraries/LibWeb/Layout/LineBox.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibWeb/Layout/LineBox.h b/Userland/Libraries/LibWeb/Layout/LineBox.h index 53cf79bf00..2f92e8e514 100644 --- a/Userland/Libraries/LibWeb/Layout/LineBox.h +++ b/Userland/Libraries/LibWeb/Layout/LineBox.h @@ -13,7 +13,7 @@ namespace Web::Layout { class LineBox { public: - LineBox() { } + LineBox() = default; float width() const { return m_width; } float bottom() const { return m_bottom; } |