mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-20 16:36:46 +00:00
update type_kinds.hpp based on latest merge
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user