freebsd-ports/cad/kicad/files/patch-polygon_SutherlandHodgmanClipPoly.h
Thierry Thomas ee93a49cbc It seems that FreeBSD-9.2 does'nt like 'std::__1'...
Reported by:	Jenkins via swills
2014-05-04 10:57:52 +00:00

15 lines
574 B
C++

--- polygon/SutherlandHodgmanClipPoly.h.orig 2013-03-09 20:51:52.000000000 +0100
+++ polygon/SutherlandHodgmanClipPoly.h 2014-05-01 18:01:22.000000000 +0200
@@ -80,9 +80,9 @@
#endif // _GDIPLUS_H
-typedef vector<PointF> pointVector;
-typedef vector<PointF>::iterator pointIterator;
-typedef vector<PointF>::const_iterator cpointIterator;
+typedef std::vector<PointF> pointVector;
+typedef std::vector<PointF>::iterator pointIterator;
+typedef std::vector<PointF>::const_iterator cpointIterator;
class SutherlandHodgman
{