1 #ifndef MARNAV__UTILS__UNIQUE__HPP
2 #define MARNAV__UTILS__UNIQUE__HPP
10 /// This is part of the C++14 standard, but unfortnunately not C++11.
11 template <class T
, class... Args
> std::unique_ptr
<T
> make_unique(Args
&&... args
)
13 return std::unique_ptr
<T
>(new T(std::forward
<Args
>(args
)...));