From 7ba0f259433a03ca930dfb55e1927ce1a0c06cf2 Mon Sep 17 00:00:00 2001 From: Ginger Bill Date: Sun, 6 Nov 2016 21:22:05 +0000 Subject: Separate SSA opt; Basic Timings for sections only --- src/array.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/array.cpp') diff --git a/src/array.cpp b/src/array.cpp index 825fdc51e..0f0f3c7de 100644 --- a/src/array.cpp +++ b/src/array.cpp @@ -3,9 +3,9 @@ template 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"); -- cgit v1.2.3