[geos-commits] r3406 - branches/3.3/include/geos/algorithm

svn_geos at osgeo.org svn_geos at osgeo.org
Tue Jul 5 05:44:10 EDT 2011


Author: strk
Date: 2011-07-05 02:44:10 -0700 (Tue, 05 Jul 2011)
New Revision: 3406

Modified:
   branches/3.3/include/geos/algorithm/LineIntersector.h
Log:
Initialize LineIntersector::isProperVar in constructor (not really needed but makes less noise under static analisys tools)


Modified: branches/3.3/include/geos/algorithm/LineIntersector.h
===================================================================
--- branches/3.3/include/geos/algorithm/LineIntersector.h	2011-07-05 09:44:00 UTC (rev 3405)
+++ branches/3.3/include/geos/algorithm/LineIntersector.h	2011-07-05 09:44:10 UTC (rev 3406)
@@ -81,7 +81,8 @@
 	LineIntersector(const geom::PrecisionModel* initialPrecisionModel=NULL)
 		:
 		precisionModel(initialPrecisionModel),
-		result(0)
+		result(0),
+		isProperVar(false)
 	{}
 
 	~LineIntersector() {}



More information about the geos-commits mailing list