diff options
Diffstat (limited to 'Alc/vector.h')
-rw-r--r-- | Alc/vector.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Alc/vector.h b/Alc/vector.h index b340fe71..4bb92458 100644 --- a/Alc/vector.h +++ b/Alc/vector.h @@ -7,11 +7,6 @@ #include "almalloc.h" -/* "Base" vector type, designed to alias with the actual vector types. */ -typedef struct vector__s { - size_t Capacity; - size_t Size; -} *vector_; #define TYPEDEF_VECTOR(T, N) typedef struct { \ size_t Capacity; \ |