From adae93281cec11e1b41e3c6c83d77827824eda40 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 5 Sep 2019 12:56:34 +1000 Subject: Cleanup: clang-format --- source/blender/blenlib/BLI_array.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'source/blender/blenlib') diff --git a/source/blender/blenlib/BLI_array.h b/source/blender/blenlib/BLI_array.h index d687838a896..57e1790fdfd 100644 --- a/source/blender/blenlib/BLI_array.h +++ b/source/blender/blenlib/BLI_array.h @@ -83,7 +83,8 @@ void _bli_array_grow_func(void **arr_p, ((void *)(_##arr##_static) != \ NULL) && /* don't add _##arr##_len below because it must be zero */ \ (_bli_array_totalsize_static(arr) >= \ - (size_t)(_##arr##_len + (num)))) ? /* we have an empty array and a static var big enough */ \ + (size_t)(_##arr##_len + \ + (num)))) ? /* we have an empty array and a static var big enough */ \ (void)(arr = (void *)_##arr##_static) : /* use existing static array or allocate */ \ (LIKELY(_bli_array_totalsize(arr) >= (size_t)(_##arr##_len + (num))) ? \ (void)0 /* do nothing */ : \ -- cgit v1.2.3