diff --git a/octa/format.hh b/octa/format.hh index e1467cd..1e6f943 100644 --- a/octa/format.hh +++ b/octa/format.hh @@ -384,11 +384,11 @@ namespace detail { template using FmtRangeTest = decltype(test_fmt_range(0)); - template + template static inline octa::Ptrdiff format_ritem(R &writer, octa::Size &fmtn, const char *fmt, - const A &...args) { - return format_impl(writer, fmtn, fmt, args...); + const T &item) { + return format_impl(writer, fmtn, fmt, item); } template