From fc96938345e7d1adc0bcd07349db1e39a62f45d5 Mon Sep 17 00:00:00 2001 From: Shawn Zhong Date: Fri, 23 Dec 2022 19:20:08 -0600 Subject: [PATCH] Remove empty semicolon --- include/fmt/ranges.h | 1 - 1 file changed, 1 deletion(-) diff --git a/include/fmt/ranges.h b/include/fmt/ranges.h index 42ba01c2..fc7bdd1a 100644 --- a/include/fmt/ranges.h +++ b/include/fmt/ranges.h @@ -501,7 +501,6 @@ struct range_formatter< auto end = detail::range_end(range); for (; it != end; ++it) { if (i > 0) out = detail::copy_str(separator_, out); - ; ctx.advance_to(out); out = underlying_.format(mapper.map(*it), ctx); ++i;