| 4846 | using char_type = typename std::iterator_traits<IteratorType>::value_type; |
| 4847 | |
| 4848 | iterator_input_adapter(IteratorType first, IteratorType last) |
| 4849 | : current(std::move(first)), end(std::move(last)) {} |
| 4850 | |
| 4851 | typename std::char_traits<char_type>::int_type get_character() |
| 4852 | { |
nothing calls this directly
no outgoing calls
no test coverage detected