mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 21:07:35 +00:00
SharedGraphics: Run clang-format on everything.
This commit is contained in:
parent
7770d6a09d
commit
76b3337498
20 changed files with 216 additions and 114 deletions
|
@ -5,9 +5,12 @@
|
|||
|
||||
class DisjointRectSet {
|
||||
public:
|
||||
DisjointRectSet() { }
|
||||
~DisjointRectSet() { }
|
||||
DisjointRectSet(DisjointRectSet&& other) : m_rects(move(other.m_rects)) { }
|
||||
DisjointRectSet() {}
|
||||
~DisjointRectSet() {}
|
||||
DisjointRectSet(DisjointRectSet&& other)
|
||||
: m_rects(move(other.m_rects))
|
||||
{
|
||||
}
|
||||
|
||||
void add(const Rect&);
|
||||
|
||||
|
@ -23,4 +26,3 @@ private:
|
|||
|
||||
Vector<Rect, 32> m_rects;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue