Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Created September 8, 2017 06:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deque-blog/1daf5dfcccf4c5cf972c37c9010019f6 to your computer and use it in GitHub Desktop.
Save deque-blog/1daf5dfcccf4c5cf972c37c9010019f6 to your computer and use it in GitHub Desktop.
template<typename Clonable>
std::unique_ptr<Clonable> clone(Clonable const* i)
{
return std::unique_ptr<Clonable>(i->clone());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment