aboutsummaryrefslogtreecommitdiffstats
path: root/Alc/vector.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2016-08-21 23:59:11 -0700
committerChris Robinson <[email protected]>2016-08-21 23:59:11 -0700
commitbd054632e0ba42ad93dd3bcad54042a126a65646 (patch)
tree2129189eef4255b54cda1ab5be3d06e5b755022e /Alc/vector.h
parent846cdd472da81fefefca8ffa113d32824bc297c2 (diff)
Remove an unneeded typedef
Diffstat (limited to 'Alc/vector.h')
-rw-r--r--Alc/vector.h5
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; \