[geos-commits] r3209 - trunk/include/geos/operation/union
svn_geos at osgeo.org
svn_geos at osgeo.org
Sun Feb 13 14:50:50 EST 2011
Author: mloskot
Date: 2011-02-13 11:50:50 -0800 (Sun, 13 Feb 2011)
New Revision: 3209
Modified:
trunk/include/geos/operation/union/PointGeometryUnion.h
Log:
Declare PointGeometryUnion type as non-copyable
Modified: trunk/include/geos/operation/union/PointGeometryUnion.h
===================================================================
--- trunk/include/geos/operation/union/PointGeometryUnion.h 2011-02-13 19:25:25 UTC (rev 3208)
+++ trunk/include/geos/operation/union/PointGeometryUnion.h 2011-02-13 19:50:50 UTC (rev 3209)
@@ -63,6 +63,10 @@
const geom::Geometry& pointGeom;
const geom::Geometry& otherGeom;
const geom::GeometryFactory* geomFact;
+
+ // Declared as non-copyable
+ PointGeometryUnion(const PointGeometryUnion& other);
+ PointGeometryUnion& operator=(const PointGeometryUnion& rhs);
};
} // namespace geos::operation::union
More information about the geos-commits
mailing list