Fixed issue with ev_vec_push macros
Run tests / Run tests (push) Has been cancelled

This commit is contained in:
2026-05-14 23:42:35 +03:00
parent e3d47ebc67
commit 89b34bf63c
+2 -2
View File
@@ -186,8 +186,8 @@ static struct ev_vec_meta_t *__svec_interm_md;
* *Note* This is possibly replaceable with a variadic function.
*/
#define ev_vec_push(v, ...) \
EV_FOREACH_UDATA(__ev_vec_internal_push, v, __VA_ARGS__);
#define __ev_vec_internal_push(v, var) ev_vec_push_impl((ev_vec_t*)v, var);
EV_FOREACH_UDATA(__ev_vec_internal_push, v, __VA_ARGS__)
#define __ev_vec_internal_push(v, var) ev_vec_push_impl((ev_vec_t*)v, var)
/*!
* \param vec_p A pointer to the vector that we want an iterator for