| 6211 | using char_type = typename std::iterator_traits<IteratorType>::value_type; |
| 6212 | |
| 6213 | iterator_input_adapter(IteratorType first, IteratorType last) |
| 6214 | : current(std::move(first)), end(std::move(last)) |
| 6215 | {} |
| 6216 | |
| 6217 | typename std::char_traits<char_type>::int_type get_character() |
| 6218 | { |
nothing calls this directly
no outgoing calls
no test coverage detected