| 1356 | using char_type = typename Context::char_type; |
| 1357 | |
| 1358 | FMT_CONSTEXPR FMT_INLINE auto map(signed char val) -> int { return val; } |
| 1359 | FMT_CONSTEXPR FMT_INLINE auto map(unsigned char val) -> unsigned { |
| 1360 | return val; |
| 1361 | } |
no test coverage detected