[+] Added macro AU_ITERATE_ARRAY. Idiom for; for (AU_ITERATE_ARRAY(index, array)) , where index is the name of the index variable, and array is an array of any type of a known length
This commit is contained in:
parent
fbf39d9d17
commit
0bcaddc5c7
@ -94,4 +94,5 @@ name ## Shared_t name ## Shared(T... args) \
|
||||
#define _new new (std::nothrow)
|
||||
#endif
|
||||
|
||||
//#define AU_FWD(var) std::forward<decltype(var)>(var)
|
||||
#define AU_FWD(var) std::forward<decltype(var)>(var)
|
||||
#define AU_ITERATE_ARRAY(index, arry) AuUInt index = 0; index < AuArraySize(arry); index++
|
||||
|
Loading…
Reference in New Issue
Block a user