diff --git a/include/fmt/printf.h b/include/fmt/printf.h index aab79d03..b4405b0c 100644 --- a/include/fmt/printf.h +++ b/include/fmt/printf.h @@ -686,18 +686,6 @@ inline int vfprintf( return static_cast(buffer.size()); } -/** Formats arguments and writes the output to the range. */ -template > -typename ArgFormatter::iterator vprintf( - detail::buffer& out, basic_string_view format_str, - basic_format_args> args) { - typename ArgFormatter::iterator iter(out); - Context(iter, format_str, args).template format(); - return iter; -} - /** \rst Prints formatted data to the stream *os*.