From 88315c2269d4cba2cc801a0a666afa0a918fe93e Mon Sep 17 00:00:00 2001 From: strk Date: Tue, 5 Jul 2011 09:44:10 +0000 Subject: [PATCH] Initialize LineIntersector::isProperVar in constructor (not really needed but makes less noise under static analisys tools) git-svn-id: http://svn.osgeo.org/geos/branches/3.3@3406 5242fede-7e19-0410-aef8-94bd7d2200fb --- include/geos/algorithm/LineIntersector.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/geos/algorithm/LineIntersector.h b/include/geos/algorithm/LineIntersector.h index c50264d1..123b9b67 100644 --- a/include/geos/algorithm/LineIntersector.h +++ b/include/geos/algorithm/LineIntersector.h @@ -81,7 +81,8 @@ public: LineIntersector(const geom::PrecisionModel* initialPrecisionModel=NULL) : precisionModel(initialPrecisionModel), - result(0) + result(0), + isProperVar(false) {} ~LineIntersector() {} -- 2.11.4.GIT