From 514f500bfb3260c339c9c9066827e09237bc6d74 Mon Sep 17 00:00:00 2001 From: Artem Pavlenko Date: Mon, 9 Oct 2006 10:28:48 +0000 Subject: [PATCH] use boost::shared_ptr --- include/mapnik/feature_style_processor.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/mapnik/feature_style_processor.hpp b/include/mapnik/feature_style_processor.hpp index 209c6092f..e38891655 100644 --- a/include/mapnik/feature_style_processor.hpp +++ b/include/mapnik/feature_style_processor.hpp @@ -83,7 +83,7 @@ namespace mapnik void apply_to_layer(Layer const& lay,Processor & p) { p.start_layer_processing(lay); - datasource *ds=lay.datasource().get(); + boost::shared_ptr ds=lay.datasource(); if (ds) { Envelope const& bbox=m_.getCurrentExtent();