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:
parent
aff81d318b
commit
c911781c21
243 changed files with 483 additions and 481 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue