| 2257 | return *this; |
| 2258 | } |
| 2259 | FMT_CONSTEXPR auto operator=(char c) -> bounded_output_iterator& { |
| 2260 | if (bound > 0) { |
| 2261 | *underlying_iterator++ = c; |
| 2262 | --bound; |
| 2263 | } |
| 2264 | return *this; |
| 2265 | } |
| 2266 | }; |
| 2267 | |
| 2268 | return write_padded<char>( |
nothing calls this directly
no outgoing calls
no test coverage detected