diff --git a/include/fmt/format.h b/include/fmt/format.h index 08cf38dd..c571005d 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -3466,7 +3466,7 @@ template class udl_formatter { std::basic_string operator()(Args&&... args) const { FMT_CONSTEXPR_DECL Char s[] = {CHARS..., '\0'}; FMT_CONSTEXPR_DECL bool invalid_format = - do_check_format_string( + do_check_format_string::type...>( basic_string_view(s, sizeof...(CHARS))); (void)invalid_format; return format(s, std::forward(args)...);