xo-alloc2: utest: verify ++op for alloc iterators

This commit is contained in:
Roland Conybeare 2025-12-21 15:28:25 -05:00
commit af1707aa03
2 changed files with 2 additions and 2 deletions

View file

@ -263,7 +263,7 @@ namespace xo {
/* valid iterator can be advanced + reaches end */
{
ix.next();
++ix; //ix.next();
REQUIRE(arena.error_count_ == 0);
REQUIRE(ix == end_ix);

View file

@ -193,7 +193,7 @@ namespace xo {
}
{
ix.next();
++ix;
REQUIRE(ix == end_ix);
}