[geos-commits] r3843 - in branches/3.3: . src/simplify

svn_geos at osgeo.org svn_geos at osgeo.org
Wed Jul 17 05:57:40 PDT 2013


Author: strk
Date: 2013-07-17 05:57:40 -0700 (Wed, 17 Jul 2013)
New Revision: 3843

Modified:
   branches/3.3/NEWS
   branches/3.3/src/simplify/LineSegmentIndex.cpp
Log:
Fix LineSegmentVisitor copy ctor (#636)

Modified: branches/3.3/NEWS
===================================================================
--- branches/3.3/NEWS	2013-07-15 15:39:48 UTC (rev 3842)
+++ branches/3.3/NEWS	2013-07-17 12:57:40 UTC (rev 3843)
@@ -2,6 +2,7 @@
 2012-MM-DD
 
 - Bug fixes / improvements
+    - Fix LineSegmentVisitor copy ctor (#636)
     - Fix area boundary return from GEOSPointOnSurface (#623)
     - Speedup GEOSWKBReader_read (#621)
     - Fix RobustLineIntersector handling of invalid intersection points (#622)

Modified: branches/3.3/src/simplify/LineSegmentIndex.cpp
===================================================================
--- branches/3.3/src/simplify/LineSegmentIndex.cpp	2013-07-15 15:39:48 UTC (rev 3842)
+++ branches/3.3/src/simplify/LineSegmentIndex.cpp	2013-07-17 12:57:40 UTC (rev 3843)
@@ -84,6 +84,7 @@
 		if ( this == &o ) return *this;
 		querySeg = o.querySeg;
 		items.reset(new vector<LineSegment*>(*(o.items.get())));
+		return *this;
 	}
 
 	void visitItem(void* item)



More information about the geos-commits mailing list