From 52e182ec3c755528be8b24077853fbf644457252 Mon Sep 17 00:00:00 2001 From: Steven Eker Date: Mon, 9 Dec 2024 22:54:26 +0100 Subject: [PATCH] Remove static from REGISTER_ARENA --- include/runtime/arena.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/runtime/arena.h b/include/runtime/arena.h index 95febb18f..4bb5ac315 100644 --- a/include/runtime/arena.h +++ b/include/runtime/arena.h @@ -134,7 +134,7 @@ inline char arena::get_arena_semispace_id_of_object(void *ptr) { // Macro to define a new arena with the given ID. Supports IDs ranging from 0 to // 127. -#define REGISTER_ARENA(name, id) static thread_local arena name(id) +#define REGISTER_ARENA(name, id) thread_local arena name(id) #ifdef __MACH__ //