pre-commit run --all-files

This commit is contained in:
Artem Pavlenko 2022-12-12 10:46:41 +00:00
parent d29aeb2ddb
commit f4eec2e24f

View file

@ -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