missed a semicolon

This commit is contained in:
Morgan
2025-12-01 16:43:52 +01:00
parent b3ef77e9dd
commit 555081240b

View File

@@ -4279,7 +4279,7 @@ gb_internal bool type_set_offsets(Type *t) {
t = base_type(t);
if (t->kind == Type_Struct) {
if (t->Struct.are_offsets_being_processed.load()) {
return true
return true;
}
MUTEX_GUARD(&t->Struct.offset_mutex);
if (!t->Struct.are_offsets_set) {