mirror of
https://github.com/libSDL2pp/libSDL2pp.git
synced 2025-08-03 10:55:57 -04:00
Remove unneeded argument names
This commit is contained in:
parent
1ec8df2964
commit
6ed9b7a578
@ -40,9 +40,9 @@ public:
|
||||
|
||||
static Point Null();
|
||||
|
||||
Point(const Point& other) noexcept = default;
|
||||
Point(const Point&) noexcept = default;
|
||||
Point(Point&&) noexcept = default;
|
||||
Point& operator=(const Point& other) noexcept = default;
|
||||
Point& operator=(const Point&) noexcept = default;
|
||||
Point& operator=(Point&&) noexcept = default;
|
||||
|
||||
bool operator==(const Point& other) const;
|
||||
|
@ -44,9 +44,9 @@ public:
|
||||
|
||||
static Rect FromCenter(int cx, int cy, int w, int h);
|
||||
|
||||
Rect(const Rect& other) noexcept = default;
|
||||
Rect(const Rect&) noexcept = default;
|
||||
Rect(Rect&&) noexcept = default;
|
||||
Rect& operator=(const Rect& other) noexcept = default;
|
||||
Rect& operator=(const Rect&) noexcept = default;
|
||||
Rect& operator=(Rect&&) noexcept = default;
|
||||
|
||||
bool operator==(const Rect& other) const;
|
||||
|
Loading…
x
Reference in New Issue
Block a user