pre-commit run --all-files
This commit is contained in:
parent
d29aeb2ddb
commit
f4eec2e24f
1 changed files with 8 additions and 8 deletions
|
@ -69,8 +69,7 @@ std::ostream& operator<<(std::ostream& os, mapnik::gradient const& gr)
|
|||
|
||||
std::ostream& operator<<(std::ostream& os, agg::trans_affine const& tr)
|
||||
{
|
||||
os << "<transform>matrix(" << tr.sx << "," << tr.shy << ","
|
||||
<< tr.shx << "," << tr.sy << "," << tr.tx << ","
|
||||
os << "<transform>matrix(" << tr.sx << "," << tr.shy << "," << tr.shx << "," << tr.sy << "," << tr.tx << ","
|
||||
<< tr.ty << ")</transform>";
|
||||
return os;
|
||||
}
|
||||
|
@ -78,7 +77,8 @@ std::ostream& operator<<(std::ostream& os, agg::trans_affine const& tr)
|
|||
struct group_attribute_visitor
|
||||
{
|
||||
group_attribute_visitor(std::stringstream& ss, unsigned padding)
|
||||
: ss_(ss), padding_(padding)
|
||||
: ss_(ss)
|
||||
, padding_(padding)
|
||||
{}
|
||||
|
||||
void operator()(mapnik::svg::group const& g) const
|
||||
|
|
Loading…
Reference in a new issue