Skip to content

Commit 8b3ec52

Browse files
committed
Don't export symbol
Summary: Test Plan: Reviewers: Subscribers: Tasks: Tags:
1 parent eaf1c1c commit 8b3ec52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/mimalloc/alloc.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -938,7 +938,7 @@ static bool mi_try_new_handler(bool nothrow) {
938938
typedef void (*std_new_handler_t)(void);
939939

940940
#if (defined(__GNUC__) || (defined(__clang__) && !defined(_MSC_VER))) // exclude clang-cl, see issue #631
941-
std_new_handler_t __attribute__((weak)) _ZSt15get_new_handlerv(void) {
941+
std_new_handler_t _ZSt15get_new_handlerv(void) {
942942
return NULL;
943943
}
944944
static std_new_handler_t mi_get_new_handler(void) {

0 commit comments

Comments
 (0)