1.生成本地变量宏新增结构体支持。

This commit is contained in:
MacRsh
2023-11-16 01:49:26 +08:00
parent bce78ee101
commit 70e92eab7b

View File

@@ -101,7 +101,7 @@ extern "C" {
*
* @return A pointer to the variable.
*/
#define mr_make_local(type, value) (&((type){(value)}))
#define mr_make_local(type, ...) (&((type){__VA_ARGS__}))
/**
* @brief This macro function checks if a list is empty.