remove extra space character for ouput (tidy)

This commit is contained in:
Artem Pavlenko 2024-05-15 10:25:14 +01:00
parent 1283ca5b77
commit 3a461630f7

View file

@ -194,7 +194,7 @@ class serialize_symbolizer_property
std::ostringstream os;
for (std::size_t i = 0; i < dash.size(); ++i)
{
os << dash[i].first << ", " << dash[i].second;
os << dash[i].first << "," << dash[i].second;
if (i + 1 < dash.size())
os << ",";
}