From aed7a29e3d1afb9bef3b3f35253e3990351a31e5 Mon Sep 17 00:00:00 2001 From: Ed_ Date: Sat, 9 Aug 2025 10:04:31 -0400 Subject: [PATCH] update type_kinds.hpp based on latest merge --- codegen/type_kinds.hpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/codegen/type_kinds.hpp b/codegen/type_kinds.hpp index 83bd4b674..adcc71202 100644 --- a/codegen/type_kinds.hpp +++ b/codegen/type_kinds.hpp @@ -73,12 +73,12 @@ struct Enum { }; struct Tuple { - Slice variables; /* Entity_Variable */ - i64 *offsets; - BlockingMutex mutex; /* for settings offsets */ - bool are_offsets_being_processed; - bool are_offsets_set; - bool is_packed; + Slice variables; /* Entity_Variable */ + i64 *offsets; + BlockingMutex mutex; /* for settings offsets */ + std::atomic are_offsets_being_processed; + bool are_offsets_set; + bool is_packed; }; typedef TypeProc Proc;