Searched defs:is_member_pointer_cv (Results 1 – 1 of 1) sorted by relevance
701 template <class T> struct is_member_pointer_cv { static const bool value = false; … argument702 template <class T, class U>struct is_member_pointer_cv<T U::*> { static const bool value = true; }; struct