| 730 | |
| 731 | template<bool is_const> |
| 732 | buffer::ptr buffer::list::iterator_impl<is_const>::get_current_ptr() const |
| 733 | { |
| 734 | if (p == ls->end()) |
| 735 | throw end_of_buffer(); |
| 736 | return ptr(*p, p_off, p->length() - p_off); |
| 737 | } |
| 738 | |
| 739 | template<bool is_const> |
| 740 | bool buffer::list::iterator_impl<is_const>::is_pointing_same_raw( |