mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-07 08:08:50 +00:00
update type_kinds.hpp based on latest merge
This commit is contained in:
@@ -73,12 +73,12 @@ struct Enum {
|
|||||||
};
|
};
|
||||||
|
|
||||||
struct Tuple {
|
struct Tuple {
|
||||||
Slice<Entity *> variables; /* Entity_Variable */
|
Slice<Entity *> variables; /* Entity_Variable */
|
||||||
i64 *offsets;
|
i64 *offsets;
|
||||||
BlockingMutex mutex; /* for settings offsets */
|
BlockingMutex mutex; /* for settings offsets */
|
||||||
bool are_offsets_being_processed;
|
std::atomic<bool> are_offsets_being_processed;
|
||||||
bool are_offsets_set;
|
bool are_offsets_set;
|
||||||
bool is_packed;
|
bool is_packed;
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef TypeProc Proc;
|
typedef TypeProc Proc;
|
||||||
|
|||||||
Reference in New Issue
Block a user