| 243 | string Name() override { return wrapped_->Name(); } |
| 244 | |
| 245 | void* AllocateRaw(size_t alignment, size_t num_bytes) override { |
| 246 | return wrapped_->AllocateRaw(alignment, num_bytes); |
| 247 | } |
| 248 | |
| 249 | void* AllocateRaw(size_t alignment, size_t num_bytes, |
| 250 | const AllocationAttributes& allocation_attr) override { |
nothing calls this directly
no test coverage detected