[geos-commits] r3366 - trunk/include/geos/geom/util
svn_geos at osgeo.org
svn_geos at osgeo.org
Mon May 16 10:17:32 EDT 2011
Author: mloskot
Date: 2011-05-16 07:17:32 -0700 (Mon, 16 May 2011)
New Revision: 3366
Modified:
trunk/include/geos/geom/util/SineStarFactory.h
Log:
Fixed buggy self-assignment in SineStarFactory::setNumArms
Modified: trunk/include/geos/geom/util/SineStarFactory.h
===================================================================
--- trunk/include/geos/geom/util/SineStarFactory.h 2011-05-16 11:46:24 UTC (rev 3365)
+++ trunk/include/geos/geom/util/SineStarFactory.h 2011-05-16 14:17:32 UTC (rev 3366)
@@ -86,7 +86,7 @@
*/
void setNumArms(int nArms)
{
- numArms = numArms;
+ numArms = nArms;
}
/**
More information about the geos-commits
mailing list