| 51 | #ifdef ARROW_MIMALLOC |
| 52 | struct MimallocMemoryPoolFactory { |
| 53 | static MemoryPool* memory_pool() { |
| 54 | MemoryPool* pool; |
| 55 | ABORT_NOT_OK(mimalloc_memory_pool(&pool)); |
| 56 | return pool; |
| 57 | } |
| 58 | }; |
| 59 | #endif |
| 60 |
nothing calls this directly
no test coverage detected