Skip to content

Commit

Permalink
Remove static from REGISTER_ARENA
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenmeker committed Dec 9, 2024
1 parent 7ecb011 commit 52e182e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/runtime/arena.h
Original file line number Diff line number Diff line change
Expand Up @@ -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__
//
Expand Down

0 comments on commit 52e182e

Please sign in to comment.