summaryrefslogtreecommitdiff
path: root/graphics/tcm/files/patch-src:gl:point.c
diff options
context:
space:
mode:
authorNorikatsu Shigemura <nork@FreeBSD.org>2003-02-02 15:01:33 +0000
committerNorikatsu Shigemura <nork@FreeBSD.org>2003-02-02 15:01:33 +0000
commitf1c123bcf5128f82bccc80e7fb2632971e4ca0a5 (patch)
tree3987d9e8cfbf6c65e1059ef7490a2da4b9b22d4c /graphics/tcm/files/patch-src:gl:point.c
parentConditionalize 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.c13
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;}