Created on 2016-05-24.00:00:00 last changed 103 months ago
Proposed resolution:
Withdrawn by the submitter, since the prerequisites were incorrect.
scoped_allocator_adaptor is specified to use forward when what it is really doing is moving elements. It should use move.
Previous resolution [SUPERSEDED]:
This wording is relative to N4582.
Edit [allocator.adaptor.members] p15 as indicated:
template <class T1, class T2, class U, class V> void construct(pair<T1, T2>* p, pair<U, V>&& x);Effects: Equivalent to this->construct(p, piecewise_construct, forward_as_tuple(std::
forwardmove<U>(x.first)), forward_as_tuple(std::forwardmove<V>(x.second))).
History | |||
---|---|---|---|
Date | User | Action | Args |
2016-06-05 16:20:49 | admin | set | status: new -> nad |
2016-05-29 12:50:48 | admin | set | messages: + msg8153 |
2016-05-24 00:00:00 | admin | create |