| 118 | // Detecting if we have print(unsigned long long value, int base) / print(0ull, 0) overload |
| 119 | template<typename T, typename = void> |
| 120 | struct has_ull_print: std::false_type { |
| 121 | }; |
| 122 | template<typename T> |
| 123 | struct has_ull_print<T, void_t<decltype(std::declval<T>().print(0ull, 0))>> : std::true_type { |
| 124 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected