diff --git a/src/svg/output/process_symbolizers.cpp b/src/svg/output/process_symbolizers.cpp index 10de95982..19338d5f9 100644 --- a/src/svg/output/process_symbolizers.cpp +++ b/src/svg/output/process_symbolizers.cpp @@ -59,7 +59,7 @@ bool svg_renderer::process(rule::symbolizers const& syms, // process each symbolizer to collect its (path) information. // path information (attributes from line_ and polygon_ symbolizers) // is collected with the path_attributes_ data member. - for (symbolizer const& sym : syms) + for (auto const& sym : syms) { if (is_path_based(sym)) { @@ -71,9 +71,8 @@ bool svg_renderer::process(rule::symbolizers const& syms, if (process_path) { // generate path output for each geometry of the current feature. - for(std::size_t i=0; i 0) { path_type path(t_, geom, prj_trans);