| 43 | class BufferArray { |
| 44 | public: |
| 45 | explicit BufferArray( |
| 46 | const aimrt_buffer_array_allocator_t* allocator = SimpleBufferArrayAllocator::NativeHandle()) |
| 47 | : buffer_array_(aimrt_buffer_array_t{.data = nullptr, .len = 0, .capacity = 0}), |
| 48 | allocator_ptr_(allocator) {} |
| 49 | |
| 50 | explicit BufferArray(BufferArrayAllocatorRef allocator) |
| 51 | : buffer_array_(aimrt_buffer_array_t{.data = nullptr, .len = 0, .capacity = 0}), |
nothing calls this directly
no test coverage detected