Get the root, regardless of what type it is.
| 89 | |
| 90 | // Get the root, regardless of what type it is. |
| 91 | inline Table *GetAnyRoot(uint8_t *flatbuf) { |
| 92 | return GetMutableRoot<Table>(flatbuf); |
| 93 | } |
| 94 | inline const Table *GetAnyRoot(const uint8_t *flatbuf) { |
| 95 | return GetRoot<Table>(flatbuf); |
| 96 | } |
no outgoing calls
no test coverage detected