[wpiutil] Upgrade to fmtlib 8.0.1 (#3483)

This commit is contained in:
Tyler Veness
2021-07-13 11:39:14 -07:00
committed by GitHub
parent 1daadb812f
commit e4dc3908bb
8 changed files with 69 additions and 67 deletions

View File

@@ -392,7 +392,8 @@ struct formatter<tuple_join_view<Char, T...>, Char> {
auto format(const tuple_join_view<Char, T...>& value, FormatContext& ctx,
detail::index_sequence<N...>) ->
typename FormatContext::iterator {
return format_args(value, ctx, std::get<N>(value.tuple)...);
using std::get;
return format_args(value, ctx, get<N>(value.tuple)...);
}
template <typename FormatContext>