+ fix ctor's

This commit is contained in:
Artem Pavlenko 2012-05-07 16:37:12 +01:00
parent 7e49a6f44e
commit a2115c718b

View file

@ -48,7 +48,8 @@ public:
properties_complete_(), properties_complete_(),
writer_name_(), writer_name_(),
writer_ptr_(), writer_ptr_(),
clip_(true) clip_(true),
smooth_value_(0.0)
{ {
affine_transform_[0] = 1.0; affine_transform_[0] = 1.0;
affine_transform_[1] = 0.0; affine_transform_[1] = 0.0;
@ -61,7 +62,8 @@ public:
symbolizer_base(symbolizer_base const& other) symbolizer_base(symbolizer_base const& other)
: comp_op_(other.comp_op_), : comp_op_(other.comp_op_),
affine_transform_(other.affine_transform_), 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. */ /** Add a metawriter to this symbolizer using a name. */
void add_metawriter(std::string const& name, metawriter_properties const& properties); void add_metawriter(std::string const& name, metawriter_properties const& properties);