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