Remove unneeded argument names

This commit is contained in:
Dmitry Marakasov 2014-02-22 00:39:50 +04:00
parent 1ec8df2964
commit 6ed9b7a578
2 changed files with 4 additions and 4 deletions

View File

@ -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;

View File

@ -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;