Guest User

Untitled

a guest
Oct 24th, 2017
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. template<class T, class ...Args>
  2. my_unique_ptr<T> my_make_unique(Args&& ...args){
  3. return (my_unique_ptr<T>(new T(std::forward<Args>(args)...)));
  4. };
Add Comment
Please, Sign In to add comment