| 738 | |
| 739 | template<bool is_const> |
| 740 | bool buffer::list::iterator_impl<is_const>::is_pointing_same_raw( |
| 741 | const ptr& other) const |
| 742 | { |
| 743 | if (p == ls->end()) |
| 744 | throw end_of_buffer(); |
| 745 | return p->_raw == other._raw; |
| 746 | } |
| 747 | |
| 748 | // copy data out. |
| 749 | // note that these all _append_ to dest! |
no test coverage detected