| 238 | #ifdef TINYFORMAT_OLD_LIBSTDCPLUSPLUS_WORKAROUND |
| 239 | template<typename T, bool convertible = is_convertible<T, int>::value> |
| 240 | struct formatZeroIntegerWorkaround |
| 241 | { |
| 242 | static bool invoke(std::ostream& /**/, const T& /**/) { return false; } |
| 243 | }; |
| 244 | template<typename T> |
| 245 | struct formatZeroIntegerWorkaround<T,true> |
| 246 | { |
nothing calls this directly
no outgoing calls
no test coverage detected