diff options
Diffstat (limited to 'src/std/containers/darray.h')
-rw-r--r-- | src/std/containers/darray.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/std/containers/darray.h b/src/std/containers/darray.h index b3dbd06..ebb5795 100644 --- a/src/std/containers/darray.h +++ b/src/std/containers/darray.h @@ -86,7 +86,7 @@ size_t new_capacity = \ d->capacity > 0 ? d->capacity * DARRAY_RESIZE_FACTOR : DARRAY_DEFAULT_CAPACITY; \ T *resized = Type##_darray_resize(d, new_capacity); \ - (void)resized; \ + (void)resized; \ } \ \ d->data[d->len] = value; \ @@ -98,7 +98,7 @@ size_t new_capacity = \ d->capacity > 0 ? d->capacity * DARRAY_RESIZE_FACTOR : DARRAY_DEFAULT_CAPACITY; \ T *resized = Type##_darray_resize(d, new_capacity); \ - (void)resized; \ + (void)resized; \ } \ \ T *place = d->data + d->len; \ @@ -118,7 +118,7 @@ size_t new_capacity = \ d->capacity > 0 ? d->capacity * DARRAY_RESIZE_FACTOR : DARRAY_DEFAULT_CAPACITY; \ T *resized = Type##_darray_resize(d, new_capacity); \ - (void)resized; \ + (void)resized; \ } \ \ /* shift existing data after index */ \ |