From b72515de73fe7e66901e8476dd8ee9dade66e466 Mon Sep 17 00:00:00 2001 From: q66 Date: Sat, 4 Jul 2015 15:23:54 +0100 Subject: [PATCH] no need for argument pack here --- octa/format.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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