Issue #202
| 185 | |
| 186 | // Issue #202 |
| 187 | static void heap_no_delete_worker() { |
| 188 | mi_heap_t* heap = mi_heap_new(); |
| 189 | void* q = mi_heap_malloc(heap, 1024); (void)(q); |
| 190 | // mi_heap_delete(heap); // uncomment to prevent assertion |
| 191 | } |
| 192 | |
| 193 | static void heap_no_delete() { |
| 194 | auto t1 = std::thread(heap_no_delete_worker); |
nothing calls this directly
no test coverage detected