summaryrefslogtreecommitdiff
path: root/Source/Core/Common
diff options
context:
space:
mode:
authorRyan Houdek <Sonicadvance1@gmail.com>2013-01-07 13:47:34 -0600
committerRyan Houdek <Sonicadvance1@gmail.com>2013-01-07 13:47:34 -0600
commitd0301ca89d318d8d6e3e7fde9c4b60e470e184e4 (patch)
tree35493869c097117512c93c7b85e2011295f1aa69 /Source/Core/Common
parent5240e75be20791d5226e7ac589a09a102755edf2 (diff)
Revert 30dd9c2 e9d00bf db5f4c8 and bff0fae
Diffstat (limited to 'Source/Core/Common')
-rw-r--r--Source/Core/Common/Src/MathUtil.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/Source/Core/Common/Src/MathUtil.h b/Source/Core/Common/Src/MathUtil.h
index c5f613ada1..a6290ff602 100644
--- a/Source/Core/Common/Src/MathUtil.h
+++ b/Source/Core/Common/Src/MathUtil.h
@@ -117,8 +117,6 @@ struct Rectangle
Rectangle(T theLeft, T theTop, T theRight, T theBottom)
: left(theLeft), top(theTop), right(theRight), bottom(theBottom)
{ }
-
- bool operator==(const Rectangle& r) { return left==r.left && top==r.top && right==r.right && bottom==r.bottom; }
T GetWidth() const { return abs(right - left); }
T GetHeight() const { return abs(bottom - top); }