| 43 | #ifdef ARROW_MIMALLOC |
| 44 | struct Mimalloc { |
| 45 | static Result<MemoryPool*> GetAllocator() { |
| 46 | MemoryPool* pool; |
| 47 | RETURN_NOT_OK(mimalloc_memory_pool(&pool)); |
| 48 | return pool; |
| 49 | } |
| 50 | }; |
| 51 | #endif |
| 52 |
nothing calls this directly
no test coverage detected