alloc/allocator: add forgotten type parameter for forward call

This commit is contained in:
Danny Robson 2018-03-07 17:56:42 +11:00
parent 3867b9e74e
commit 87fc5df03d

View File

@ -28,9 +28,10 @@ namespace util::alloc {
public:
typedef ValueT value_type;
template <typename ...Args>
explicit allocator (Args&& ...args):
m_backing (std::forward (args)...)
m_backing (std::forward<Args> (args)...)
{ ; }