diff options
author | Norikatsu Shigemura <nork@FreeBSD.org> | 2003-02-02 15:01:33 +0000 |
---|---|---|
committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2003-02-02 15:01:33 +0000 |
commit | f1c123bcf5128f82bccc80e7fb2632971e4ca0a5 (patch) | |
tree | 3987d9e8cfbf6c65e1059ef7490a2da4b9b22d4c /graphics/tcm/files/patch-src:gl:point.c | |
parent | Conditionalize libgnugetopt dependencies. (diff) |
Update to 2.20.
PR: ports/47760
Submitted by: Ports Fury
Notes
Notes:
svn path=/head/; revision=74511
Diffstat (limited to 'graphics/tcm/files/patch-src:gl:point.c')
-rw-r--r-- | graphics/tcm/files/patch-src:gl:point.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/graphics/tcm/files/patch-src:gl:point.c b/graphics/tcm/files/patch-src:gl:point.c deleted file mode 100644 index 8785d46663c8..000000000000 --- a/graphics/tcm/files/patch-src:gl:point.c +++ /dev/null @@ -1,13 +0,0 @@ ---- src/gl/point.c.orig Sat Oct 19 21:32:33 2002 -+++ src/gl/point.c Sat Oct 19 21:33:30 2002 -@@ -41,8 +41,8 @@ - bool operator!=(const Point &p1, const Point &p2) { - return (p1.x != p2.x || p1.y != p2.y); } - --ostream &operator<<(ostream &o, const Point p) -+std::ostream &operator<<(std::ostream &o, const Point p) - {o << p.x << " "; o << p.y; return o;} - --istream &operator>>(istream &i, Point &p) -+std::istream &operator>>(std::istream &i, Point &p) - {i >> p.x; i >> p.y; return i;} |