Skip to content

Commit

Permalink
add missing detail namespace (#2107)
Browse files Browse the repository at this point in the history
Co-authored-by: Walter Gray <[email protected]>
  • Loading branch information
yeswalrus and Walter Gray authored Jan 20, 2021
1 parent 80dc7cc commit 456efa4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/fmt/ranges.h
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ struct formatter<TupleT, Char, enable_if_t<fmt::is_tuple_like<TupleT>::value>> {
// C++11 generic lambda for format()
template <typename FormatContext> struct format_each {
template <typename T> void operator()(const T& v) {
if (i > 0) out = write_delimiter(out);
if (i > 0) out = detail::write_delimiter(out);
out = detail::write_range_entry<Char>(out, v);
++i;
}
Expand Down

0 comments on commit 456efa4

Please sign in to comment.