| 2502 | // typed by its root. |
| 2503 | // A BufferRef does not own its buffer. |
| 2504 | struct BufferRefBase {}; // for std::is_base_of |
| 2505 | template<typename T> struct BufferRef : BufferRefBase { |
| 2506 | BufferRef() : buf(nullptr), len(0), must_free(false) {} |
| 2507 | BufferRef(uint8_t *_buf, uoffset_t _len) |
nothing calls this directly
no outgoing calls
no test coverage detected