| 270 | // Similarly, for elements of tables. |
| 271 | template<typename T> |
| 272 | T *GetAnyFieldAddressOf(const Table &table, const reflection::Field &field) { |
| 273 | return reinterpret_cast<T *>(table.GetAddressOf(field.offset())); |
| 274 | } |
| 275 | |
| 276 | // Similarly, for elements of structs. |
| 277 | template<typename T> |
nothing calls this directly
no test coverage detected