| 737 | } |
| 738 | |
| 739 | static inline void mi_block_set_next(const mi_page_t* page, mi_block_t* block, const mi_block_t* next) { |
| 740 | #ifdef MI_ENCODE_FREELIST |
| 741 | mi_block_set_nextx(page,block,next, page->keys); |
| 742 | #else |
| 743 | MI_UNUSED(page); |
| 744 | mi_block_set_nextx(page,block,next,NULL); |
| 745 | #endif |
| 746 | } |
| 747 | |
| 748 | |
| 749 | // ------------------------------------------------------------------- |
no test coverage detected