1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 09:38:11 +00:00

Meta+LibC through LibHTTP: Make clang-format-10 clean

Why break at LibHTTP? Because "Meta+Libraries" would be insanely large,
and breaking between LibHTTP and LibJS makes the commits roughly evenly large.
This commit is contained in:
Ben Wiederhake 2020-09-18 09:49:51 +02:00 committed by Andreas Kling
parent 64cc3f51d0
commit ede5dbd7b3
58 changed files with 87 additions and 89 deletions

View file

@ -34,8 +34,9 @@ namespace GUI {
class BoxLayout : public Layout {
C_OBJECT(BoxLayout);
public:
virtual ~BoxLayout() override {}
virtual ~BoxLayout() override { }
Gfx::Orientation orientation() const { return m_orientation; }
@ -50,22 +51,24 @@ private:
class VerticalBoxLayout final : public BoxLayout {
C_OBJECT(VerticalBoxLayout);
public:
explicit VerticalBoxLayout()
: BoxLayout(Gfx::Orientation::Vertical)
{
}
virtual ~VerticalBoxLayout() override {}
virtual ~VerticalBoxLayout() override { }
};
class HorizontalBoxLayout final : public BoxLayout {
C_OBJECT(HorizontalBoxLayout);
public:
explicit HorizontalBoxLayout()
: BoxLayout(Gfx::Orientation::Horizontal)
{
}
virtual ~HorizontalBoxLayout() override {}
virtual ~HorizontalBoxLayout() override { }
};
}