From 60b8b0bca496b21b047771cc23cb37ca788862c3 Mon Sep 17 00:00:00 2001 From: Glen Stark Date: Wed, 8 Jun 2016 12:00:05 +0200 Subject: [PATCH] fixed windows build problem --- fmt/printf.h | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/fmt/printf.h b/fmt/printf.h index 2749a88b..3ef41037 100644 --- a/fmt/printf.h +++ b/fmt/printf.h @@ -81,11 +81,11 @@ static inline fmt::internal::Null<> strerror_s(char *, std::size_t, ...) { namespace fmt { namespace internal { -template class DefaultPrintfArgFormatter; +// template class DefaultPrintfArgFormatter; -template > -class PrintfFormatter; +// template > +// class PrintfFormatter; template class PrintfArgFormatter : public internal::ArgFormatterBase { @@ -165,8 +165,9 @@ public: : PrintfArgFormatter, CharT>(w, spec) {} }; - template - class PrintfFormatter : private FormatterBase { + template > + class PrintfFormatter : private FormatterBase { private: void parse_flags(FormatSpec &spec, const Char *&s);