Skip to content

Commit

Permalink
Make value_desc_cont_atomic_store() static
Browse files Browse the repository at this point in the history
Looks like it was just an accidental omission when it was added.
  • Loading branch information
MasterDuke17 committed Jan 12, 2022
1 parent 2d9ad74 commit 1351cfe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/6model/containers.c
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ static MVMObject * value_desc_cont_atomic_load(MVMThreadContext *tc, MVMObject *
return value ? value : tc->instance->VMNull;
}

void value_desc_cont_atomic_store(MVMThreadContext *tc, MVMObject *cont, MVMObject *value) {
static void value_desc_cont_atomic_store(MVMThreadContext *tc, MVMObject *cont, MVMObject *value) {
MVMValueDescContainer *data = (MVMValueDescContainer *)STABLE(cont)->container_data;
MVMCallStackArgsFromC *args_record = MVM_callstack_allocate_args_from_c(tc,
MVM_callsite_get_common(tc, MVM_CALLSITE_ID_OBJ_OBJ));
Expand Down

0 comments on commit 1351cfe

Please sign in to comment.