From 7bc91f856bab4a1c212f802ecd1f5d04b34afc2b Mon Sep 17 00:00:00 2001 From: olivier80 Date: Sun, 5 Feb 2017 23:00:15 +0100 Subject: [PATCH] fix template >> without c++11. --- fmt/format.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fmt/format.h b/fmt/format.h index 4b8ba4e3..038bfd94 100644 --- a/fmt/format.h +++ b/fmt/format.h @@ -3924,12 +3924,12 @@ void format_arg(fmt::BasicFormatter &f, if (it != e.last) { const Char* save = format_str; - f.format(format_str, internal::MakeArg>(*it++)); + f.format(format_str, internal::MakeArg >(*it++)); while (it != e.last) { f.writer().write(e.sep); format_str = save; - f.format(format_str, internal::MakeArg>(*it++)); + f.format(format_str, internal::MakeArg >(*it++)); } } format_str = end + 1;