diff options
author | Max Horn | 2010-03-22 20:28:08 +0000 |
---|---|---|
committer | Max Horn | 2010-03-22 20:28:08 +0000 |
commit | 92c896d88317b64a2cc99fc3617f3405481e90a2 (patch) | |
tree | 78133d8095719a5b5564ea14a6f8230ab738106f /common | |
parent | dd7891cdadc5c2e4f9d1c10d229c4c0d7235f8b1 (diff) | |
download | scummvm-rg350-92c896d88317b64a2cc99fc3617f3405481e90a2.tar.gz scummvm-rg350-92c896d88317b64a2cc99fc3617f3405481e90a2.tar.bz2 scummvm-rg350-92c896d88317b64a2cc99fc3617f3405481e90a2.zip |
Patch #2973290: Semicolon cleanup
svn-id: r48359
Diffstat (limited to 'common')
-rw-r--r-- | common/rect.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/rect.h b/common/rect.h index 54b219394c..dc97dcceec 100644 --- a/common/rect.h +++ b/common/rect.h @@ -41,8 +41,8 @@ struct Point { Point() : x(0), y(0) {} Point(int16 x1, int16 y1) : x(x1), y(y1) {} - 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; }; + 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; } /** * Return the square of the distance between this point and the point p. |