Remove empty semicolon

This commit is contained in:
Shawn Zhong 2022-12-23 19:20:08 -06:00 committed by Victor Zverovich
parent f0ab112c34
commit fc96938345

View File

@ -501,7 +501,6 @@ struct range_formatter<
auto end = detail::range_end(range);
for (; it != end; ++it) {
if (i > 0) out = detail::copy_str<Char>(separator_, out);
;
ctx.advance_to(out);
out = underlying_.format(mapper.map(*it), ctx);
++i;