From a216f2562d99b4f0b218723c91dd4fd383f3de85 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Sun, 23 May 2021 20:14:55 -0700 Subject: [PATCH] Remove undocumented and obsolete vprintf overload --- include/fmt/printf.h | 12 ------------ 1 file changed, 12 deletions(-) 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*.