From ede5dbd7b3ec1c7240d6ca2693a5ada307338b4c Mon Sep 17 00:00:00 2001 From: Ben Wiederhake Date: Fri, 18 Sep 2020 09:49:51 +0200 Subject: 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. --- Libraries/LibGUI/Command.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Libraries/LibGUI/Command.h') diff --git a/Libraries/LibGUI/Command.h b/Libraries/LibGUI/Command.h index 5bf13e1f75..9ff6a0aad9 100644 --- a/Libraries/LibGUI/Command.h +++ b/Libraries/LibGUI/Command.h @@ -34,13 +34,13 @@ class Command { public: virtual ~Command(); - virtual void undo() {} - virtual void redo() {} + virtual void undo() { } + virtual void redo() { } String action_text() const { return m_action_text; } protected: - Command() {} + Command() { } void set_action_text(const String& text) { m_action_text = text; } private: -- cgit v1.2.3