| 1311 | // clang-format off |
| 1312 | #ifdef DOCTEST_CONFIG_TREAT_CHAR_STAR_AS_STRING |
| 1313 | template<class T> struct decay_array { using type = T; }; |
| 1314 | template<class T, unsigned N> struct decay_array<T[N]> { using type = T*; }; |
| 1315 | template<class T> struct decay_array<T[]> { using type = T*; }; |
| 1316 |
nothing calls this directly
no outgoing calls
no test coverage detected