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)...) { ; }