1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 02:47:35 +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

@ -35,7 +35,7 @@ public:
RefPtr<Gfx::Bitmap> wallpaper_bitmap() const;
bool set_wallpaper(RefPtr<Gfx::Bitmap const> wallpaper_bitmap, Optional<StringView> path);
void set_system_effects(Vector<bool> effects) { m_system_effects = { effects }; };
void set_system_effects(Vector<bool> effects) { m_system_effects = { effects }; }
SystemEffects const& system_effects() const { return m_system_effects; }
Gfx::IntRect rect() const { return m_bounding_rect; }