| 1039 | struct StringMakerBase { |
| 1040 | template <typename T> |
| 1041 | static String convert(const DOCTEST_REF_WRAP(T)) { |
| 1042 | #ifdef DOCTEST_CONFIG_REQUIRE_STRINGIFICATION_FOR_ALL_USED_TYPES |
| 1043 | static_assert(deferred_false<T>::value, "No stringification detected for type T. See string conversion manual"); |
| 1044 | #endif |
| 1045 | return "{?}"; |
| 1046 | } |
| 1047 | }; |
| 1048 | |
| 1049 | template <typename T> |
nothing calls this directly
no outgoing calls
no test coverage detected