From bd054632e0ba42ad93dd3bcad54042a126a65646 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Sun, 21 Aug 2016 23:59:11 -0700 Subject: Remove an unneeded typedef --- Alc/vector.h | 5 ----- 1 file changed, 5 deletions(-) (limited to 'Alc') 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; \ -- cgit v1.2.3