mapnik coding style

This commit is contained in:
Dane Springmeyer 2012-07-30 23:07:12 -07:00
parent e482998c51
commit e69c6037b7

View file

@ -65,19 +65,19 @@ public:
(*bitmap_data_)->set(0xff000000); (*bitmap_data_)->set(0xff000000);
} }
marker(const boost::optional<mapnik::image_ptr> &data) marker(boost::optional<mapnik::image_ptr> const& data)
: bitmap_data_(data) : bitmap_data_(data)
{ {
} }
marker(const boost::optional<mapnik::svg_path_ptr> &data) marker(boost::optional<mapnik::svg_path_ptr> const& data)
: vector_data_(data) : vector_data_(data)
{ {
} }
marker(const marker& rhs) marker(marker const& rhs)
: bitmap_data_(rhs.bitmap_data_), : bitmap_data_(rhs.bitmap_data_),
vector_data_(rhs.vector_data_) vector_data_(rhs.vector_data_)
{} {}