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

Debug CI crash 12/n [skip ci]

This commit is contained in:
Rene Rivera
2022-04-11 21:34:16 -05:00
parent 1270abb67d
commit 3eb06ca47c

View File

@@ -387,7 +387,9 @@ struct _stack
{
using U = remove_cref_t<T>;
assert( ((ptrdiff_t)data) > (1<<4) );
return &( static_cast<U*>( data )[n] );
remove_cref_t<T> * result = &( static_cast<U*>( data )[n] );
assert( ((ptrdiff_t)result) > (1<<4) );
return result;
}
template <typename T>