diff options
author | daan <daan@microsoft.com> | 2020-02-02 21:03:09 -0800 |
---|---|---|
committer | daan <daan@microsoft.com> | 2020-02-02 21:03:09 -0800 |
commit | f3c47c7c91801c712db08d6944503132defef039 (patch) | |
tree | c6a714ad0f269e429a544a5b8c60c904b66af14e /include/mimalloc-internal.h | |
parent | 757dcc84115eeccb93ff23e177851c6d0d88f8ea (diff) |
improved malloc zone handling on macOSX (not working yet)
Diffstat (limited to 'include/mimalloc-internal.h')
-rw-r--r-- | include/mimalloc-internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/mimalloc-internal.h b/include/mimalloc-internal.h index 37722cd..4ac7da7 100644 --- a/include/mimalloc-internal.h +++ b/include/mimalloc-internal.h @@ -298,7 +298,7 @@ mi_heap_t* _mi_heap_main_get(void); // statically allocated main backing hea #endif #if defined(MI_TLS_SLOT) -static inline void* mi_tls_slot(size_t slot); // forward declaration +static inline void* mi_tls_slot(size_t slot) mi_attr_noexcept; // forward declaration #elif defined(MI_TLS_PTHREAD_SLOT_OFS) #include <pthread.h> static inline mi_heap_t** mi_tls_pthread_heap_slot(void) { |