| 1340 | } |
| 1341 | |
| 1342 | void PushFlatBuffer(const uint8_t *bytes, size_t size) { |
| 1343 | PushBytes(bytes, size); |
| 1344 | finished = true; |
| 1345 | } |
| 1346 | |
| 1347 | void PushBytes(const uint8_t *bytes, size_t size) { buf_.push(bytes, size); } |
| 1348 |
nothing calls this directly
no test coverage detected