1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 19:47:44 +00:00

Everywhere: Remove needless trailing semi-colons after functions

This is a new option in clang-format-16.
This commit is contained in:
Timothy Flynn 2023-07-07 22:48:11 -04:00 committed by Linus Groh
parent aff81d318b
commit c911781c21
243 changed files with 483 additions and 481 deletions

View file

@ -42,7 +42,7 @@ public:
void apply_size_increments_to_window(GUI::Window&);
void set_opacity(u8);
float opacity() { return m_opacity; };
float opacity() { return m_opacity; }
void set_show_scrollbar(bool);
@ -53,7 +53,7 @@ public:
};
BellMode bell_mode() { return m_bell_mode; }
void set_bell_mode(BellMode bm) { m_bell_mode = bm; };
void set_bell_mode(BellMode bm) { m_bell_mode = bm; }
bool has_selection() const;
bool selection_contains(const VT::Position&) const;