freebsd-ports/cad/kicad/files/patch-polygon_SutherlandHodgmanClipPoly.h

16 lines
574 B
C
Raw Normal View History

--- 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
{