diff --git a/include/fmt/printf.h b/include/fmt/printf.h index f75f10af..6c73b1d8 100644 --- a/include/fmt/printf.h +++ b/include/fmt/printf.h @@ -632,7 +632,6 @@ template ::value)> inline std::basic_string sprintf(const S& format, const Args&... args) { - internal::check_format_string(format); typedef internal::buffer buffer; typedef typename basic_printf_context_t::type context; format_arg_store as{args...}; @@ -665,7 +664,6 @@ inline int vfprintf( template ::value)> inline int fprintf(std::FILE* f, const S& format, const Args&... args) { - internal::check_format_string(format); typedef internal::buffer buffer; typedef typename basic_printf_context_t::type context; format_arg_store as{args...};