From a2115c718b26dd8b70062a6132f2b5ca066f3ee8 Mon Sep 17 00:00:00 2001 From: Artem Pavlenko Date: Mon, 7 May 2012 16:37:12 +0100 Subject: [PATCH] + fix ctor's --- include/mapnik/symbolizer.hpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/include/mapnik/symbolizer.hpp b/include/mapnik/symbolizer.hpp index 5c72e98a6..780e8c43d 100644 --- a/include/mapnik/symbolizer.hpp +++ b/include/mapnik/symbolizer.hpp @@ -48,7 +48,8 @@ public: properties_complete_(), writer_name_(), writer_ptr_(), - clip_(true) + clip_(true), + smooth_value_(0.0) { affine_transform_[0] = 1.0; affine_transform_[1] = 0.0; @@ -61,7 +62,8 @@ public: symbolizer_base(symbolizer_base const& other) : comp_op_(other.comp_op_), affine_transform_(other.affine_transform_), - clip_(other.clip_) {} + clip_(other.clip_), + smooth_value_(other.smooth_value_) {} /** Add a metawriter to this symbolizer using a name. */ void add_metawriter(std::string const& name, metawriter_properties const& properties);