summaryrefslogtreecommitdiff
path: root/source/array/array.h
diff options
context:
space:
mode:
Diffstat (limited to 'source/array/array.h')
-rw-r--r--source/array/array.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/array/array.h b/source/array/array.h
index cbe710a..6ddf5f0 100644
--- a/source/array/array.h
+++ b/source/array/array.h
@@ -1,15 +1,15 @@
#pragma once
struct r32_array {
- r32 *buffer;
size_t size;
size_t capacity;
+ r32 *buffer;
};
struct u32_array {
- u32 *buffer;
size_t size;
size_t capacity;
+ u32 *buffer;
};
// @r32_array