| 22 | static constexpr bool isInline() { return true; } |
| 23 | |
| 24 | ArrayVTable(uint32_t capacity = 0, SegmentAllocator allocator = SegmentAllocator::Global) |
| 25 | : header(capacity, allocator) |
| 26 | {} |
| 27 | ~ArrayVTable() {} |
| 28 | |
| 29 | SegmentHeader header; |
nothing calls this directly
no outgoing calls
no test coverage detected