| 971 | template <typename T> struct is_pointer<T*> : true_type { }; |
| 972 | |
| 973 | template <typename T> struct is_array : false_type { }; |
| 974 | // NOLINTNEXTLINE(*-avoid-c-arrays) |
| 975 | template <typename T, size_t SIZE> struct is_array<T[SIZE]> : true_type { }; |
| 976 | #endif |
nothing calls this directly
no outgoing calls
no test coverage detected