| 466 | const uint8_t *newbuf, size_t newlen); |
| 467 | |
| 468 | inline bool SetFieldT(Table *table, const reflection::Field &field, |
| 469 | const uint8_t *val) { |
| 470 | FLATBUFFERS_ASSERT(sizeof(uoffset_t) == |
| 471 | GetTypeSize(field.type()->base_type())); |
| 472 | return table->SetPointer(field.offset(), val); |
| 473 | } |
| 474 | |
| 475 | // ------------------------- COPYING ------------------------- |
| 476 |
nothing calls this directly
no test coverage detected