| 1315 | template<class T> struct decay_array<T[]> { using type = T*; }; |
| 1316 | |
| 1317 | template<class T> struct not_char_pointer { static DOCTEST_CONSTEXPR int value = 1; }; |
| 1318 | template<> struct not_char_pointer<char*> { static DOCTEST_CONSTEXPR int value = 0; }; |
| 1319 | template<> struct not_char_pointer<const char*> { static DOCTEST_CONSTEXPR int value = 0; }; |
| 1320 |
nothing calls this directly
no outgoing calls
no test coverage detected