From 87fc5df03d5a82c5c4bac6043b5052fd2dffeadb Mon Sep 17 00:00:00 2001 From: Danny Robson Date: Wed, 7 Mar 2018 17:56:42 +1100 Subject: [PATCH] alloc/allocator: add forgotten type parameter for forward call --- alloc/allocator.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/alloc/allocator.hpp b/alloc/allocator.hpp index ef5d0e61..a1fcb991 100644 --- a/alloc/allocator.hpp +++ b/alloc/allocator.hpp @@ -28,9 +28,10 @@ namespace util::alloc { public: typedef ValueT value_type; + template explicit allocator (Args&& ...args): - m_backing (std::forward (args)...) + m_backing (std::forward (args)...) { ; }