Return the Allocator implementation to use based on the allocator attributes requested. See allocator.h for more details.
| 190 | // Return the Allocator implementation to use based on the allocator |
| 191 | // attributes requested. See allocator.h for more details. |
| 192 | virtual Allocator* GetAllocator(AllocatorAttributes /*attr*/) { |
| 193 | LOG(FATAL) << "GetAllocator() is not implemented."; |
| 194 | return nullptr; |
| 195 | } |
| 196 | |
| 197 | // This method is provided for backwards compatibility, and will be removed |
| 198 | // in a future release. |
no outgoing calls
no test coverage detected