This is the mail archive of the gcc-patches@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[v3 PATCH] Implement LWG 2744 and LWG 2754.


Tested on Linux-x64.

2016-08-09  Ville Voutilainen  <ville.voutilainen@gmail.com>

    Implement LWG 2744 and LWG 2754.
    * include/std/any (any(ValueType&&)): Constrain with __is_in_place.
    (any(in_place_type_t<_ValueType>, _Args&&...)): Use _Decay.
    (any(in_place_type_t<_ValueType>, initializer_list<_Up>, _Args&&...)):
    Likewise.
    (emplace(_Args&&...)): Likewise.
    (emplace(initializer_list<_Up>, _Args&&...)): Likewise.
    * include/std/utility: (__is_in_place_impl, __is_in_place): New.
    * testsuite/20_util/any/assign/emplace.cc: Add tests for decaying
    emplace.
    * testsuite/20_util/any/cons/in_place.cc: Add tests for decaying
    in_place constructor.
    * testsuite/20_util/any/misc/any_cast_neg.cc: Adjust.

Attachment: lwg2754.diff
Description: Text document


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]