[geos-commits] r2952 - trunk/src/geom
svn_geos at osgeo.org
svn_geos at osgeo.org
Fri Mar 26 08:01:14 EDT 2010
Author: mloskot
Date: 2010-03-26 08:01:13 -0400 (Fri, 26 Mar 2010)
New Revision: 2952
Modified:
trunk/src/geom/GeometryList.cpp
Log:
geom\GeoemtryList.cpp: missing implementation of GeometryList::size() function (ported from branches/3.2)
Modified: trunk/src/geom/GeometryList.cpp
===================================================================
--- trunk/src/geom/GeometryList.cpp 2010-03-26 12:00:34 UTC (rev 2951)
+++ trunk/src/geom/GeometryList.cpp 2010-03-26 12:01:13 UTC (rev 2952)
@@ -56,6 +56,13 @@
}
/*public*/
+GeometryList::size_type
+GeometryList::size() const
+{
+ return geoms.size();
+}
+
+/*public*/
Geometry *
GeometryList::operator[] (GeometryList::size_type i)
{
More information about the geos-commits
mailing list