| 111 | } |
| 112 | |
| 113 | void BinaryContainer::appendArray(const uint8_t* array, size_type size) |
| 114 | { |
| 115 | std::copy(array, array + size, std::back_inserter(buf_)); |
| 116 | } |
| 117 | |
| 118 | void BinaryContainer::appendVector(const std::vector<uint8_t>& vec) |
| 119 | { |
no outgoing calls
no test coverage detected