Skip to content

Instantly share code, notes, and snippets.

@milesrout
Created December 26, 2015 10:15
Show Gist options
  • Save milesrout/354603a8c2643a7f4c1a to your computer and use it in GitHub Desktop.
Save milesrout/354603a8c2643a7f4c1a to your computer and use it in GitHub Desktop.
template< class T > struct is_pointer_helper : std::false_type {};
template< class T > struct is_pointer_helper<T*> : std::true_type {};
template< class T > struct is_pointer : is_pointer_helper<typename std::remove_cv<T>::type> {};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment