mapnik coding style
This commit is contained in:
parent
e482998c51
commit
e69c6037b7
1 changed files with 3 additions and 3 deletions
|
@ -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_)
|
||||||
{}
|
{}
|
||||||
|
|
Loading…
Reference in a new issue