summaryrefslogtreecommitdiff
path: root/graphics/tcm/files/patch-src:gl:point.h
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.h
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.h')
-rw-r--r--graphics/tcm/files/patch-src:gl:point.h15
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;