| 7 | namespace buffer { |
| 8 | |
| 9 | Append::Append( |
| 10 | const std::shared_ptr<Buffer>& buffer1, |
| 11 | const std::shared_ptr<Buffer>& buffer2) |
| 12 | : buffer1_(buffer1), buffer2_(buffer2) {} |
| 13 | |
| 14 | Sample Append::get(int64_t idx) const { |
| 15 | int64_t size1 = buffer1_->size(); |
nothing calls this directly
no outgoing calls
no test coverage detected