[geos-commits] r3512 - branches/3.3/src/index/sweepline
svn_geos at osgeo.org
svn_geos at osgeo.org
Fri Nov 4 11:00:15 EDT 2011
Author: strk
Date: 2011-11-04 08:00:15 -0700 (Fri, 04 Nov 2011)
New Revision: 3512
Modified:
branches/3.3/src/index/sweepline/SweepLineIndex.cpp
Log:
Fix initialization order
Modified: branches/3.3/src/index/sweepline/SweepLineIndex.cpp
===================================================================
--- branches/3.3/src/index/sweepline/SweepLineIndex.cpp 2011-10-28 23:13:49 UTC (rev 3511)
+++ branches/3.3/src/index/sweepline/SweepLineIndex.cpp 2011-11-04 15:00:15 UTC (rev 3512)
@@ -29,8 +29,8 @@
SweepLineIndex::SweepLineIndex()
:
- nOverlaps(0),
- indexBuilt(false)
+ indexBuilt(false),
+ nOverlaps(0)
{
//events=new vector<SweepLineEvent*>();
//nOverlaps=0;
More information about the geos-commits
mailing list