mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 22:47:47 +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
|
@ -142,7 +142,7 @@ private:
|
|||
template<typename T>
|
||||
int unicode_view_width(T const& view) const;
|
||||
|
||||
void update_x_height() { m_x_height = m_baseline - m_mean_line; };
|
||||
void update_x_height() { m_x_height = m_baseline - m_mean_line; }
|
||||
|
||||
virtual bool has_color_bitmaps() const override { return false; }
|
||||
|
||||
|
|
|
@ -166,9 +166,9 @@ struct Instruction {
|
|||
bool d() const;
|
||||
bool e() const;
|
||||
|
||||
u8 flag_bits() const { return m_flag_bits; };
|
||||
u8 flag_bits() const { return m_flag_bits; }
|
||||
Opcode opcode() const { return m_opcode; }
|
||||
ReadonlyBytes values() const { return m_values; };
|
||||
ReadonlyBytes values() const { return m_values; }
|
||||
|
||||
Instruction(Opcode opcode, ReadonlyBytes values = {});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue