From cf78fb2745d47f2a21978a09e55a6ebb7babac52 Mon Sep 17 00:00:00 2001 From: Jean-Charles Lefebvre Date: Thu, 29 Dec 2016 17:44:44 +0100 Subject: [PATCH] Corrected nested-name-specifier error --- fmt/format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fmt/format.h b/fmt/format.h index eac2e4ed..786e1c26 100644 --- a/fmt/format.h +++ b/fmt/format.h @@ -1955,7 +1955,7 @@ class ArgFormatterBase : public ArgVisitor { } public: - typedef typename Spec SpecType; + typedef Spec SpecType; ArgFormatterBase(BasicWriter &w, Spec &s) : writer_(w), spec_(s) {}