 |
Blender
V2.93
|
Go to the documentation of this file.
29 #if defined(__GNUC__) || defined(__clang__)
30 # if defined(__cplusplus) && (__cplusplus > 199711L)
31 # define BLI_array_alloca(arr, realsize) (decltype(arr)) alloca(sizeof(*arr) * (realsize))
33 # define BLI_array_alloca(arr, realsize) (typeof(arr)) alloca(sizeof(*arr) * (realsize))
36 # define BLI_array_alloca(arr, realsize) alloca(sizeof(*arr) * (realsize))