alloc/allocator: add forgotten type parameter for forward call
This commit is contained in:
parent
3867b9e74e
commit
87fc5df03d
@ -28,9 +28,10 @@ namespace util::alloc {
|
|||||||
public:
|
public:
|
||||||
typedef ValueT value_type;
|
typedef ValueT value_type;
|
||||||
|
|
||||||
|
|
||||||
template <typename ...Args>
|
template <typename ...Args>
|
||||||
explicit allocator (Args&& ...args):
|
explicit allocator (Args&& ...args):
|
||||||
m_backing (std::forward (args)...)
|
m_backing (std::forward<Args> (args)...)
|
||||||
{ ; }
|
{ ; }
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user