replace assert with SNMALLOC_ASSERT

This commit is contained in:
Amaury Chamayou
2020-03-04 16:57:44 +00:00
parent ef77bccfc2
commit acbcbce597
30 changed files with 128 additions and 106 deletions

View File

@@ -389,7 +389,7 @@ namespace snmalloc
}
}
assert(p == pointer_align_up(p, rsize));
SNMALLOC_ASSERT(p == pointer_align_up(p, rsize));
return p;
}