| 407 | |
| 408 | #if MI_DEBUG |
| 409 | void _mi_assert_fail(const char* assertion, const char* fname, unsigned line, const char* func ) { |
| 410 | _mi_fprintf(NULL, NULL, "mimalloc: assertion failed: at \"%s\":%u, %s\n assertion: \"%s\"\n", fname, line, (func==NULL?"":func), assertion); |
| 411 | abort(); |
| 412 | } |
| 413 | #endif |
| 414 | |
| 415 | // -------------------------------------------------------- |
nothing calls this directly
no test coverage detected