[geos-devel] [PATCH 1/3] fix uninitialized const caused by missing
constructor
mabrand at mabrand.nl
mabrand at mabrand.nl
Sat Mar 26 08:54:40 EDT 2011
From: Mark Brand <mabrand at mabrand.nl>
---
.../geos/operation/overlay/OverlayNodeFactory.h | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/include/geos/operation/overlay/OverlayNodeFactory.h b/include/geos/operation/overlay/OverlayNodeFactory.h
index 508863b..12c6bca 100644
--- a/include/geos/operation/overlay/OverlayNodeFactory.h
+++ b/include/geos/operation/overlay/OverlayNodeFactory.h
@@ -46,6 +46,7 @@ namespace overlay { // geos::operation::overlay
*/
class GEOS_DLL OverlayNodeFactory: public geomgraph::NodeFactory {
public:
+ OverlayNodeFactory():geomgraph::NodeFactory() {}
geomgraph::Node* createNode(const geom::Coordinate &coord) const;
static const geomgraph::NodeFactory &instance();
};
--
1.7.4.1
More information about the geos-devel
mailing list