We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bc602e commit cea47b8Copy full SHA for cea47b8
src/alloc.c
@@ -107,7 +107,7 @@ mi_decl_nodiscard extern inline mi_decl_restrict void* mi_malloc_small(size_t si
107
}
108
109
// The main allocation function
110
-mi_decl_nodiscard extern inline void* _mi_heap_malloc_zero(mi_heap_t* heap, size_t size, bool zero) mi_attr_noexcept {
+extern inline void* _mi_heap_malloc_zero(mi_heap_t* heap, size_t size, bool zero) mi_attr_noexcept {
111
if mi_likely(size <= MI_SMALL_SIZE_MAX) {
112
return mi_heap_malloc_small_zero(heap, size, zero);
113
0 commit comments