| 383 | vec_(vec) {} |
| 384 | |
| 385 | T *operator*() const { |
| 386 | return reinterpret_cast<T *>( |
| 387 | reinterpret_cast<uint8_t *>(flatbuffers::vector_data(vec_)) + offset_); |
| 388 | } |
| 389 | T *operator->() const { return operator*(); } |
| 390 | |
| 391 | private: |
nothing calls this directly
no test coverage detected