You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assert(loc->children!=NULL&&"All children should have been pre-allocated with rbs_loc_alloc_children()");
19
-
assert((loc->children->len+1 <= loc->children->cap)&&"Not enough space was pre-allocated for the children.");
19
+
rbs_assert(loc->children!=NULL,"All children should have been pre-allocated with rbs_loc_alloc_children()");
20
+
rbs_assert((loc->children->len+1 <= loc->children->cap), "Not enough space was pre-allocated for the children. Children: %hu, Capacity: %hu", loc->children->len, loc->children->cap);
0 commit comments