From 907a07cbae7ca434deed1a3b602ca1338bb85dc1 Mon Sep 17 00:00:00 2001 From: John Eivind Helset Date: Sat, 18 Jun 2022 21:50:00 +0200 Subject: [PATCH] Fixup access modifiers. --- include/fmt/ranges.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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);