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

Debug CI crash 4/n [skip ci]

This commit is contained in:
Rene Rivera
2022-04-10 17:13:18 -05:00
parent 51e927b151
commit 19f5d5f5e9

View File

@@ -327,7 +327,7 @@ struct _stack
// Move "v" to a new slot in ther stack. Returns a reference to the new item.
template <class T>
remove_cref_t<T> & push( T&& v );
remove_cref_t<T> & push( T v );
// Copy "v" into "n" new items at the top of the stack. Returns a pointer
// to the first, i.e. top most, new item.
@@ -439,7 +439,7 @@ void _stack::cleanup_item<LIST*>(_stack * s, int32_t n, LIST**)
}
template <class T>
remove_cref_t<T> & _stack::push( T&& v )
remove_cref_t<T> & _stack::push( T v )
{
using U = remove_cref_t<T>;
check_alignment();