| 862 | } |
| 863 | public: |
| 864 | explicit iterator_buffer(OutputIt out, size_t n = buffer_size) |
| 865 | : Traits(n), buffer<T>(data_, 0, buffer_size), out_(out) {} |
| 866 | |
| 867 | iterator_buffer(iterator_buffer&& other) : Traits(other), buffer<T>(data_, 0, buffer_size), out_(other.out_) {} |
| 868 |
nothing calls this directly
no outgoing calls
no test coverage detected