Skip to content

Instantly share code, notes, and snippets.

@andyzhuangyy
Last active August 29, 2015 14:17
Show Gist options
  • Save andyzhuangyy/89fe2a2fd65a4c4e8070 to your computer and use it in GitHub Desktop.
Save andyzhuangyy/89fe2a2fd65a4c4e8070 to your computer and use it in GitHub Desktop.
dereference template
struct Dereference {
template<typename T>
const T& operator()(const T* ptr) const
{
return *ptr;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment