2
0
mirror of https://github.com/boostorg/build.git synced 2026-02-21 02:52:12 +00:00

Debug CI crash 27/n [skip ci]

This commit is contained in:
Rene Rivera
2022-04-17 10:27:51 -05:00
parent cfbaf949d6
commit a10bea10d9

View File

@@ -483,7 +483,9 @@ void _stack::cleanup_push( int32_t n, T*_ )
return;
}
cleanup_info ci = { (cleanup_f)&_stack::cleanup_item<T>, this, n };
cleanups[cleanups_size++] = ci;
cleanups[cleanups_size] = ci;
cleanups_size += 1;
assert( cleanups_size <= cleanups.size() );
}
static STACK * stack_global()