diff options
author | Max Horn | 2007-04-26 19:08:53 +0000 |
---|---|---|
committer | Max Horn | 2007-04-26 19:08:53 +0000 |
commit | d4660cce55e8b49d1387a8f117b370fe76361720 (patch) | |
tree | 5ee4a67dadc2c510856ffbb7f3f2e4f6fee59079 /common | |
parent | 8b7d458668b93cf5cbfdc6e8c326a639b29ecc8b (diff) | |
download | scummvm-rg350-d4660cce55e8b49d1387a8f117b370fe76361720.tar.gz scummvm-rg350-d4660cce55e8b49d1387a8f117b370fe76361720.tar.bz2 scummvm-rg350-d4660cce55e8b49d1387a8f117b370fe76361720.zip |
Removing more semicola
svn-id: r26597
Diffstat (limited to 'common')
-rw-r--r-- | common/rect.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/common/rect.h b/common/rect.h index 7751d9a84a..be1035669a 100644 --- a/common/rect.h +++ b/common/rect.h @@ -36,9 +36,9 @@ struct Point { int16 x; //!< The horizontal part of the point int16 y; //!< The vertical part of the point - Point() : x(0), y(0) {}; - Point(const Point &p) : x(p.x), y(p.y) {}; - explicit Point(int16 x1, int16 y1) : x(x1), y(y1) {}; + Point() : x(0), y(0) {} + Point(const Point &p) : x(p.x), y(p.y) {} + explicit Point(int16 x1, int16 y1) : x(x1), y(y1) {} Point & operator=(const Point & p) { x = p.x; y = p.y; return *this; }; bool operator==(const Point & p) const { return x == p.x && y == p.y; }; bool operator!=(const Point & p) const { return x != p.x || y != p.y; }; |