| 712 | |
| 713 | template<bool is_const> |
| 714 | char buffer::list::iterator_impl<is_const>::operator*() const |
| 715 | { |
| 716 | if (p == ls->end()) |
| 717 | throw end_of_buffer(); |
| 718 | return (*p)[p_off]; |
| 719 | } |
| 720 | |
| 721 | template<bool is_const> |
| 722 | buffer::list::iterator_impl<is_const>& |
nothing calls this directly
no test coverage detected