update type_kinds.hpp based on latest merge

This commit is contained in:
2025-08-09 10:04:31 -04:00
parent 72275ae90c
commit aed7a29e3d
+6 -6
View File
@@ -73,12 +73,12 @@ struct Enum {
};
struct Tuple {
Slice<Entity *> variables; /* Entity_Variable */
i64 *offsets;
BlockingMutex mutex; /* for settings offsets */
bool are_offsets_being_processed;
bool are_offsets_set;
bool is_packed;
Slice<Entity *> variables; /* Entity_Variable */
i64 *offsets;
BlockingMutex mutex; /* for settings offsets */
std::atomic<bool> are_offsets_being_processed;
bool are_offsets_set;
bool is_packed;
};
typedef TypeProc Proc;