| 80 | : arg_(arg), type_(type) {} |
| 81 | |
| 82 | void operator()(bool value) { |
| 83 | if (type_ != 's') operator()<bool>(value); |
| 84 | } |
| 85 | |
| 86 | template <typename U, FMT_ENABLE_IF(std::is_integral<U>::value)> |
| 87 | void operator()(U value) { |
nothing calls this directly
no test coverage detected