Skip to content

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
js324 committed Feb 27, 2024
1 parent 6f6f222 commit e36ec04
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/fmt/ranges.h
Original file line number Diff line number Diff line change
Expand Up @@ -464,8 +464,8 @@ struct range_formatter<
}
format_specs spec_str{};
spec_str.type = presentation_type::debug;
return detail::write<Char>(out, basic_string_view<Char>(buf.data(), buf.size()),
spec_str);
return detail::write<Char>(
out, basic_string_view<Char>(buf.data(), buf.size()), spec_str);
}
template <typename Output, typename Iter, typename IterEnd, typename U = T,
enable_if_t<!(std::is_same<U, Char>::value), bool> = true>
Expand Down

0 comments on commit e36ec04

Please sign in to comment.