diff --git a/include/fmt/ranges.h b/include/fmt/ranges.h index d31b314f..49953fd7 100644 --- a/include/fmt/ranges.h +++ b/include/fmt/ranges.h @@ -206,10 +206,11 @@ template using tuple_index_sequence = make_index_sequence::value>; template ::value> -struct is_tuple_formattable_ { +class is_tuple_formattable_ { + public: static constexpr const bool value = false; }; -template struct is_tuple_formattable_ { +template class is_tuple_formattable_ { template static std::true_type check2(index_sequence, integer_sequence);