| 968 | template <typename T> struct underlying_type { using type = __underlying_type(T); }; |
| 969 | |
| 970 | template <typename T> struct is_pointer : false_type { }; |
| 971 | template <typename T> struct is_pointer<T*> : true_type { }; |
| 972 | |
| 973 | template <typename T> struct is_array : false_type { }; |
nothing calls this directly
no outgoing calls
no test coverage detected