| 467 | |
| 468 | template <typename T> |
| 469 | Buffer<T>::Buffer(Allocator* a, int64 n) |
| 470 | : BufferBase(a, TypedAllocator::Allocate<T>(a, n, AllocationAttributes())), |
| 471 | elem_(n) {} |
| 472 | |
| 473 | template <typename T> |
| 474 | Buffer<T>::Buffer(Allocator* a, int64 n, |
nothing calls this directly
no test coverage detected