| 451 | |
| 452 | template <typename T, fmt::enable_if_t<std::is_integral<T>::value, int> = 0> |
| 453 | auto test_value() -> T { |
| 454 | return static_cast<T>(42); |
| 455 | } |
| 456 | |
| 457 | template <typename T, |
| 458 | fmt::enable_if_t<std::is_floating_point<T>::value, int> = 0> |
nothing calls this directly
no outgoing calls
no test coverage detected