diff options
Diffstat (limited to 'graphics/tcm/files/patch-src:gl:point.h')
-rw-r--r-- | graphics/tcm/files/patch-src:gl:point.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/graphics/tcm/files/patch-src:gl:point.h b/graphics/tcm/files/patch-src:gl:point.h deleted file mode 100644 index 3a1b182e59f7..000000000000 --- a/graphics/tcm/files/patch-src:gl:point.h +++ /dev/null @@ -1,15 +0,0 @@ ---- src/gl/point.h.orig Sat Oct 19 21:32:28 2002 -+++ src/gl/point.h Sat Oct 19 21:33:12 2002 -@@ -74,10 +74,10 @@ - void operator*(double c) {x = int(x*c); y = int(y*c);} - - /// Write string representation to ostream. -- friend ostream &operator<<(ostream &o, const Point p); -+ friend std::ostream &operator<<(std::ostream &o, const Point p); - - /// Read string representation from istream. -- friend istream &operator>>(istream &i, Point &p); -+ friend std::istream &operator>>(std::istream &i, Point &p); - - /// the x-coordinate. - int x; |