| 1049 | _num = 0; |
| 1050 | } |
| 1051 | void push_back(const ptr& bp) { |
| 1052 | if (bp.length() == 0) |
| 1053 | return; |
| 1054 | _buffers.push_back(*ptr_node::create(bp).release()); |
| 1055 | _len += bp.length(); |
| 1056 | _num += 1; |
| 1057 | } |
| 1058 | void push_back(ptr&& bp) { |
| 1059 | if (bp.length() == 0) |
| 1060 | return; |
no test coverage detected