[geos-commits] r3844 - trunk/src/simplify

svn_geos at osgeo.org svn_geos at osgeo.org
Wed Jul 17 06:05:37 PDT 2013


Author: strk
Date: 2013-07-17 06:05:36 -0700 (Wed, 17 Jul 2013)
New Revision: 3844

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

Modified: trunk/src/simplify/LineSegmentIndex.cpp
===================================================================
--- trunk/src/simplify/LineSegmentIndex.cpp	2013-07-17 12:57:40 UTC (rev 3843)
+++ trunk/src/simplify/LineSegmentIndex.cpp	2013-07-17 13:05:36 UTC (rev 3844)
@@ -83,6 +83,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