From 82515f9d90ac149984013f0d64c1cab37b349b29 Mon Sep 17 00:00:00 2001 From: omniscient <17525998+omnisci3nce@users.noreply.github.com> Date: Fri, 19 Jul 2024 14:33:34 +1000 Subject: chore clang format + tidy --- src/std/containers/darray.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/std/containers/darray.h') 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 */ \ -- cgit v1.2.3-70-g09d2