From d985bc9140852efc5b66e663d99af906c583a271 Mon Sep 17 00:00:00 2001 From: Kenneth Weiss Date: Mon, 9 Jan 2023 12:34:31 -0800 Subject: [PATCH] Remove constructors for arg_formatter struct --- include/fmt/format.h | 7 ------- 1 file changed, 7 deletions(-) diff --git a/include/fmt/format.h b/include/fmt/format.h index 2b2837055d2b6..0d42bd9aaefd6 100644 --- a/include/fmt/format.h +++ b/include/fmt/format.h @@ -3583,13 +3583,6 @@ template struct arg_formatter { const format_specs* specs; locale_ref locale; - arg_formatter(buffer_appender it, const format_specs* s) - : out(it), specs(s) {} - - arg_formatter(buffer_appender it, const format_specs* s, - locale_ref l) - : out(it), specs(s), locale(l) {} - template FMT_CONSTEXPR FMT_INLINE auto operator()(T value) -> iterator { return detail::write(out, value, *specs, locale);