mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 16:37: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
|
@ -7,8 +7,12 @@ struct WSAPI_Point;
|
|||
|
||||
class Point {
|
||||
public:
|
||||
Point() { }
|
||||
Point(int x, int y) : m_x(x) , m_y(y) { }
|
||||
Point() {}
|
||||
Point(int x, int y)
|
||||
: m_x(x)
|
||||
, m_y(y)
|
||||
{
|
||||
}
|
||||
Point(const WSAPI_Point&);
|
||||
|
||||
int x() const { return m_x; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue