From d9984abadd3bbc124288bb189a190844f7e011a6 Mon Sep 17 00:00:00 2001 From: Artem Pavlenko Date: Wed, 18 Jan 2012 09:12:46 -0500 Subject: [PATCH] make mapnik::Feature base class noncopyable --- include/mapnik/datasource.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mapnik/datasource.hpp b/include/mapnik/datasource.hpp index 9934fa401..0902a72fb 100644 --- a/include/mapnik/datasource.hpp +++ b/include/mapnik/datasource.hpp @@ -43,7 +43,7 @@ namespace mapnik { typedef MAPNIK_DECL boost::shared_ptr feature_ptr; -struct MAPNIK_DECL Featureset +struct MAPNIK_DECL Featureset : private boost::noncopyable { virtual feature_ptr next()=0; virtual ~Featureset() {};