From 38cee985bb6d6a45fe59cc539dfa9cd6412b6f36 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Mon, 21 Jan 2013 02:30:40 +0000 Subject: code cleanup: style & warnings. --- source/blender/blenlib/BLI_array.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'source/blender/blenlib/BLI_array.h') diff --git a/source/blender/blenlib/BLI_array.h b/source/blender/blenlib/BLI_array.h index a73227490c6..0ba0f138c28 100644 --- a/source/blender/blenlib/BLI_array.h +++ b/source/blender/blenlib/BLI_array.h @@ -79,12 +79,10 @@ void _bli_array_grow_func(void **arr_p, const void *arr_static, /* this returns the logical size of the array, not including buffering. */ #define BLI_array_count(arr) _##arr##_count -/* Grow the array by a fixed number of items. zeroes the new elements. +/* Grow the array by a fixed number of items. * * Allow for a large 'num' value when the new size is more then double * to allocate the exact sized array. */ - -/* grow an array by a specified number of items */ #define BLI_array_grow_items(arr, num) (( \ (((void *)(arr) == NULL) && \ ((void *)(_##arr##_static) != NULL) && \ -- cgit v1.2.3