1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 08:48:11 +00:00

SharedGraphics: Run clang-format on everything.

This commit is contained in:
Andreas Kling 2019-06-07 11:46:55 +02:00
parent 7770d6a09d
commit 76b3337498
20 changed files with 216 additions and 114 deletions

View file

@ -9,8 +9,8 @@ void Rect::intersect(const Rect& other)
int b = min(bottom(), other.bottom());
if (l > r || t > b) {
m_location = { };
m_size = { };
m_location = {};
m_size = {};
return;
}