We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19046ff commit f004e54Copy full SHA for f004e54
src/internal/common_data_types.h
@@ -89,11 +89,8 @@ namespace ECS
89
90
struct ArchetypeRecordChunk
91
{
92
- //ToDo : need to hashout the alignment requirements here when storing in chunk
93
- //size_t maxCount = 0; //max entities ids that can be stored in this chunk
94
- //this maxCount should actually be in Archetype header but since we cannot use only id[] FAM we need here to avoid zero size array
95
- EntityId id[];
96
-
+
+ EntityId id[1];//hacky
97
98
};
99
0 commit comments