From 8dccccc420d01b630d781114d19ac05b00cefc4a Mon Sep 17 00:00:00 2001 From: Jinhao Date: Thu, 22 Sep 2016 08:10:24 +0800 Subject: [PATCH] fix a syntax error --- include/nana/pat/abstract_factory.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/nana/pat/abstract_factory.hpp b/include/nana/pat/abstract_factory.hpp index 8aa44e7f..bf1769e2 100644 --- a/include/nana/pat/abstract_factory.hpp +++ b/include/nana/pat/abstract_factory.hpp @@ -85,7 +85,7 @@ namespace nana std::unique_ptr create() override { constexpr auto Size = std::tuple_size::value; - return std::unique_ptr{ _m_new(typename make_pack{}) }; + return std::unique_ptr{ _m_new(make_pack{}) }; } template