[geos-commits] r3472 - trunk/include/geos/geom

svn_geos at osgeo.org svn_geos at osgeo.org
Tue Sep 20 10:35:57 EDT 2011


Author: hobu
Date: 2011-09-20 07:35:57 -0700 (Tue, 20 Sep 2011)
New Revision: 3472

Modified:
   trunk/include/geos/geom/GeometryCollection.h
Log:
mark concrete implementations as non-virtual for GeometryCollection::computeEnvelopInternal and GeometryCollection::compareToSameClass #478

Modified: trunk/include/geos/geom/GeometryCollection.h
===================================================================
--- trunk/include/geos/geom/GeometryCollection.h	2011-09-20 14:34:57 UTC (rev 3471)
+++ trunk/include/geos/geom/GeometryCollection.h	2011-09-20 14:35:57 UTC (rev 3472)
@@ -191,9 +191,9 @@
 
 	std::vector<Geometry *>* geometries;
 
-	virtual Envelope::AutoPtr computeEnvelopeInternal() const;
+	Envelope::AutoPtr computeEnvelopeInternal() const;
 
-	virtual int compareToSameClass(const Geometry *gc) const;
+	int compareToSameClass(const Geometry *gc) const;
 
 };
 



More information about the geos-commits mailing list