Skip to content

Instantly share code, notes, and snippets.

@TheOpenDevProject
Created December 27, 2015 13:48
Show Gist options
  • Save TheOpenDevProject/9e55c1cb24a78d1d87f4 to your computer and use it in GitHub Desktop.
Save TheOpenDevProject/9e55c1cb24a78d1d87f4 to your computer and use it in GitHub Desktop.
template<typename T, typename ...Args>
std::unique_ptr<T> make_unique(Args&& ...args){
return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment