vec -> ivec

I'm going to implement a normal stable vector instead of an inline
vector so we have both options for use.  I think that's smarter than
just sticking to one.
This commit is contained in:
2025-08-20 22:19:14 +01:00
parent df558da7e1
commit 55293ae396
7 changed files with 95 additions and 94 deletions

2
sys.c
View File

@@ -58,7 +58,7 @@ void sys_cleanup(sys_t *sys)
case TAG_VEC:
{
lvec_t *lvec = as_vec(allocated);
vec_free(&lvec->data);
ivec_free(&lvec->data);
free(lvec);
break;
}