[geos-commits] r3273 - trunk/include/geos/operation/overlay
svn_geos at osgeo.org
svn_geos at osgeo.org
Sat Mar 26 10:02:03 EDT 2011
Author: strk
Date: 2011-03-26 07:02:03 -0700 (Sat, 26 Mar 2011)
New Revision: 3273
Modified:
trunk/include/geos/operation/overlay/OverlayNodeFactory.h
Log:
fix uninitialized const caused by missing constructor
Modified: trunk/include/geos/operation/overlay/OverlayNodeFactory.h
===================================================================
--- trunk/include/geos/operation/overlay/OverlayNodeFactory.h 2011-03-24 17:54:38 UTC (rev 3272)
+++ trunk/include/geos/operation/overlay/OverlayNodeFactory.h 2011-03-26 14:02:03 UTC (rev 3273)
@@ -46,6 +46,7 @@
*/
class GEOS_DLL OverlayNodeFactory: public geomgraph::NodeFactory {
public:
+ OverlayNodeFactory():geomgraph::NodeFactory() {}
geomgraph::Node* createNode(const geom::Coordinate &coord) const;
static const geomgraph::NodeFactory &instance();
};
More information about the geos-commits
mailing list