 |
Blender
V3.3
|
Go to the documentation of this file.
15 #if defined(__GNUC__) || defined(__clang__)
16 # if defined(__cplusplus) && (__cplusplus > 199711L)
17 # define BLI_array_alloca(arr, realsize) (decltype(arr))alloca(sizeof(*arr) * (realsize))
19 # define BLI_array_alloca(arr, realsize) (typeof(arr))alloca(sizeof(*arr) * (realsize))
22 # define BLI_array_alloca(arr, realsize) alloca(sizeof(*arr) * (realsize))