From 3f7cca8e6048a9c259610d7bc39ef5fa1525f25d Mon Sep 17 00:00:00 2001 From: strk Date: Fri, 4 Nov 2011 15:00:15 +0000 Subject: [PATCH] Fix initialization order git-svn-id: http://svn.osgeo.org/geos/branches/3.3@3512 5242fede-7e19-0410-aef8-94bd7d2200fb --- src/index/sweepline/SweepLineIndex.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/index/sweepline/SweepLineIndex.cpp b/src/index/sweepline/SweepLineIndex.cpp index 178b120a..14e0ce54 100644 --- a/src/index/sweepline/SweepLineIndex.cpp +++ b/src/index/sweepline/SweepLineIndex.cpp @@ -29,8 +29,8 @@ namespace sweepline { // geos.index.sweepline SweepLineIndex::SweepLineIndex() : - nOverlaps(0), - indexBuilt(false) + indexBuilt(false), + nOverlaps(0) { //events=new vector(); //nOverlaps=0; -- 2.11.4.GIT