From 7bc08bb08cf88cd5d96256461e0c9299a0bf47e8 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Mon, 14 Apr 2014 00:58:45 -0700 Subject: [PATCH] Ensure VECTOR_ITER_BEGIN gives a pointer-to-type instead of an array-of-type --- Alc/vector.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Alc/vector.h b/Alc/vector.h index 2d13dd6a..f7db6517 100644 --- a/Alc/vector.h +++ b/Alc/vector.h @@ -32,7 +32,7 @@ ALboolean vector_resize(void *ptr, size_t base_size, size_t obj_count, size_t ob #define VECTOR_CAPACITY(_x) ((const ALsizei)((_x) ? (_x)->Capacity : 0)) #define VECTOR_SIZE(_x) ((const ALsizei)((_x) ? (_x)->Size : 0)) -#define VECTOR_ITER_BEGIN(_x) ((_x)->Data) +#define VECTOR_ITER_BEGIN(_x) ((_x)->Data + 0) #define VECTOR_ITER_END(_x) ((_x)->Data + VECTOR_SIZE((_x))) ALboolean vector_insert(void *ptr, size_t base_size, size_t obj_size, void *ins_pos, const void *datstart, const void *datend);