| 1415 | } |
| 1416 | |
| 1417 | void PushFlatBuffer(const uint8_t *bytes, size_t size) { |
| 1418 | PushBytes(bytes, size); |
| 1419 | finished = true; |
| 1420 | } |
| 1421 | |
| 1422 | void PushBytes(const uint8_t *bytes, size_t size) { buf_.push(bytes, size); } |
| 1423 |
nothing calls this directly
no test coverage detected