mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-03 03:32:37 +00:00
Separate SSA opt; Basic Timings for sections only
This commit is contained in:
@@ -3,9 +3,9 @@
|
||||
template <typename T>
|
||||
struct Array {
|
||||
gbAllocator allocator;
|
||||
T *data;
|
||||
isize count;
|
||||
isize capacity;
|
||||
T * data;
|
||||
isize count;
|
||||
isize capacity;
|
||||
|
||||
T &operator[](isize index) {
|
||||
GB_ASSERT_MSG(0 <= index && index < count, "Index out of bounds");
|
||||
|
||||
Reference in New Issue
Block a user