Skip to content
Snippets Groups Projects
Commit 55c4335e authored by Alexandr Lyapunov's avatar Alexandr Lyapunov
Browse files

mp_tuple_assert small release fix

parent d92e61bb
No related branches found
No related tags found
No related merge requests found
......@@ -873,8 +873,11 @@ static inline void
mp_tuple_assert(const char *tuple, const char *tuple_end)
{
assert(mp_typeof(*tuple) == MP_ARRAY);
#ifndef NDEBUG
mp_next(&tuple);
#endif
assert(tuple == tuple_end);
(void) tuple;
(void) tuple_end;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment