Merge pull request #44 from jserv/fix-conditional-build

Correct the use of MI_DEBUG by conditional build
This commit is contained in:
Daan 2019-06-25 19:35:26 -07:00 committed by GitHub
commit 901413fadd
WARNING! Although there is a key with this ID in the database it does not verify this commit! This commit is SUSPICIOUS.
GPG key ID: 4AEE18F83AFDEB23

View file

@ -234,10 +234,12 @@ static bool _mi_heap_done() {
} }
_mi_os_free(heap, sizeof(mi_thread_data_t), &_mi_stats_main); _mi_os_free(heap, sizeof(mi_thread_data_t), &_mi_stats_main);
} }
else if (MI_DEBUG > 0) { #if (MI_DEBUG > 0)
else {
_mi_heap_destroy_pages(heap); _mi_heap_destroy_pages(heap);
mi_assert_internal(heap->tld->heap_backing == &_mi_heap_main); mi_assert_internal(heap->tld->heap_backing == &_mi_heap_main);
} }
#endif
return false; return false;
} }