diff options
Diffstat (limited to 'graphics/tcm/files/patch-src:gl:rectangle.c')
-rw-r--r-- | graphics/tcm/files/patch-src:gl:rectangle.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/graphics/tcm/files/patch-src:gl:rectangle.c b/graphics/tcm/files/patch-src:gl:rectangle.c deleted file mode 100644 index 1542b0ce679c..000000000000 --- a/graphics/tcm/files/patch-src:gl:rectangle.c +++ /dev/null @@ -1,17 +0,0 @@ ---- src/gl/rectangle.c.orig Sat Oct 19 21:33:51 2002 -+++ src/gl/rectangle.c Sat Oct 19 21:34:21 2002 -@@ -26,12 +26,12 @@ - bool Rectangle::Inside(int a, int b) const - {return (a>x && b>y && a<(x+width) && b<(y+height));} - --ostream &operator<<(ostream &s, const Rectangle r) -+std::ostream &operator<<(std::ostream &s, const Rectangle r) - {s << r.x << " "; s << r.y << " "; - s << r.width << " "; s << r.height << " "; - return s;} - --istream &operator>>(istream &s, Rectangle &r) -+std::istream &operator>>(std::istream &s, Rectangle &r) - {s >> r.x; s >> r.y; - s >> r.width; s >> r.height; - return s;} |