Fix regression in #3710 (#3968)

Regression introduced in 11f2f30
Already have a test for this, but needed to make __cpp_lib_ranges
smaller to enable it
This commit is contained in:
Justin Riddell
2024-05-23 20:39:11 +01:00
committed by GitHub
parent b81761068b
commit fc723fd6c7
2 changed files with 3 additions and 2 deletions

View File

@@ -495,7 +495,8 @@ struct range_formatter<
for (; it != end; ++it) {
if (i > 0) out = detail::copy<Char>(separator_, out);
ctx.advance_to(out);
out = underlying_.format(mapper.map(*it), ctx);
auto&& item = *it; // Need an lvalue
out = underlying_.format(mapper.map(item), ctx);
++i;
}
out = detail::copy<Char>(closing_bracket_, out);