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);