Title
atomic_future constructor
Status
resolved
Section
[futures.atomic_future]
Submitter
Jonathan Wakely

Created on 2009-11-22.00:00:00 last changed 163 months ago

Messages

Date: 2010-10-21.18:28:33

Proposed resolution:

Adjust the signature above [futures.atomic_future]/6 like so:

atomic_future(atomic_future<R>&& rhs);
Date: 2010-10-21.18:28:33

Rationale:

Solved by N3058.

Date: 2010-12-05.00:09:22

[ 2010 Pittsburgh: ]

Moved to NAD EditorialResolved. Rationale added below.

Date: 2009-12-12.00:00:00

[ 2009-12-12 Moved to Tentatively Ready after 5 positive votes on c++std-lib. ]

Date: 2009-11-22.00:00:00

In [futures.atomic_future] this constructor:

atomic_future(future<R>&&);

is declared in the synopsis, but not defined. Instead n2997 defines:

atomic_future(const future<R>&& rhs);

and n3000 defines

atomic_future(atomic_future<R>&& rhs);

both of which are wrong. The constructor definition should be changed to match the synopsis.

History
Date User Action Args
2010-12-05 00:09:22adminsetstatus: nad editorial -> resolved
2010-10-21 18:28:33adminsetmessages: + msg1403
2010-10-21 18:28:33adminsetmessages: + msg1402
2010-10-21 18:28:33adminsetmessages: + msg1401
2010-10-21 18:28:33adminsetmessages: + msg1400
2009-11-22 00:00:00admincreate