| 6128 | using char_type = typename std::iterator_traits<IteratorType>::value_type; |
| 6129 | |
| 6130 | iterator_input_adapter(IteratorType first, IteratorType last) |
| 6131 | : current(std::move(first)), end(std::move(last)) |
| 6132 | {} |
| 6133 | |
| 6134 | typename std::char_traits<char_type>::int_type get_character() |
| 6135 | { |
nothing calls this directly
no outgoing calls
no test coverage detected