[geos-commits] r3415 - trunk/include/geos/algorithm
svn_geos at osgeo.org
svn_geos at osgeo.org
Tue Jul 5 05:52:35 EDT 2011
Author: strk
Date: 2011-07-05 02:52:35 -0700 (Tue, 05 Jul 2011)
New Revision: 3415
Modified:
trunk/include/geos/algorithm/LineIntersector.h
Log:
Initialize LineIntersector::isProperVar in constructor (not really needed but makes less noise under static analisys tools)
Modified: trunk/include/geos/algorithm/LineIntersector.h
===================================================================
--- trunk/include/geos/algorithm/LineIntersector.h 2011-07-05 09:52:29 UTC (rev 3414)
+++ trunk/include/geos/algorithm/LineIntersector.h 2011-07-05 09:52:35 UTC (rev 3415)
@@ -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