Skip to content

Commit e378ce1

Browse files
Grimyianh
authored andcommitted
Code style fix
1 parent 41c646b commit e378ce1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sim.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -619,8 +619,8 @@ static int compare_overlapped_atoms(const void *a, const void *b)
619619
static void raise_overlapped_atoms_slow_path(struct board *board, struct vector pos)
620620
{
621621
// expensive logic to handle the very rare case of 3+ atoms on the same hex
622-
static _Thread_local atom* atoms[MAX_ATOMS_PER_HEX];
623-
static _Thread_local atom atoms_copy[MAX_ATOMS_PER_HEX];
622+
atom* atoms[MAX_ATOMS_PER_HEX];
623+
atom atoms_copy[MAX_ATOMS_PER_HEX];
624624

625625
int count = 0;
626626
bool any_unbonded = false;

0 commit comments

Comments
 (0)