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]

Re: [PATCH] PR libstdc++/60132, implement the remaining C++11 is_trivially_* traits


On 9 October 2014 01:45, Jonathan Wakely <jwakely@redhat.com> wrote:
> Some of the tests have copyright dates of 2012-2014 - I think they
> should be just 2014, even if you copied existing files.

Some of them also had 010 as the month. :)

>
> Please break the ChangeLog entries to fit in 80 columns, e.g.
>
>         * testsuite/20_util/is_trivially_assignable/requirements/
>        explicit_instantiation.cc: New.
>
>
> Other than those minor points this is OK for trunk, thanks very much!

Ok, another try (I don't have write-after-approval, so please commit the patch
once you think it's ok):

2014-10-09  Ville Voutilainen  <ville.voutilainen@gmail.com>

    PR libstdc++/60132
    * include/std/type_traits (is_trivially_copyable,
    is_trivially_constructible, is_trivially_default_constructible,
    is_trivially_copy_constructible, is_trivially_move_constructible,
    is_trivially_assignable, is_trivially_copy_assignable,
    is_trivially_move_assignable): New.
    * testsuite/20_util/is_trivially_assignable/requirements/
    typedefs.cc: New.
    * testsuite/20_util/is_trivially_assignable/requirements/
    explicit_instantiation.cc: New.
    * testsuite/20_util/is_trivially_assignable/
    value.cc: New.
    * testsuite/20_util/is_trivially_constructible/requirements/
    typedefs.cc: New.
    * testsuite/20_util/is_trivially_constructible/requirements/
    explicit_instantiation.cc: New.
    * testsuite/20_util/is_trivially_constructible/value.cc: New.
    * testsuite/20_util/is_trivially_copyable/requirements/
    typedefs.cc: New.
    * testsuite/20_util/is_trivially_copyable/requirements/
    explicit_instantiation.cc: New.
    * testsuite/20_util/is_trivially_copyable/
    value.cc: New.
    * testsuite/20_util/is_trivially_copy_assignable/requirements/
    typedefs.cc: New.
    * testsuite/20_util/is_trivially_copy_assignable/requirements/
    explicit_instantiation.cc: New.
    * testsuite/20_util/is_trivially_copy_assignable/value.cc: New.
    * testsuite/20_util/is_trivially_copy_constructible/requirements/
    typedefs.cc: New.
    * testsuite/20_util/is_trivially_copy_constructible/requirements/
    explicit_instantiation.cc: New.
    * testsuite/20_util/is_trivially_copy_constructible/value.cc: New.
    * testsuite/20_util/is_trivially_default_constructible/requirements/
    typedefs.cc: New.
    * testsuite/20_util/is_trivially_default_constructible/requirements/
    explicit_instantiation.cc: New.
    * testsuite/20_util/is_trivially_default_constructible/value.cc: New.
    * testsuite/20_util/is_trivially_move_assignable/requirements/
    typedefs.cc: New.
    * testsuite/20_util/is_trivially_move_assignable/requirements/
    explicit_instantiation.cc: New.
    * testsuite/20_util/is_trivially_move_assignable/value.cc: New.
    * testsuite/20_util/is_trivially_move_constructible/requirements/
    typedefs.cc: New.
    * testsuite/20_util/is_trivially_move_constructible/requirements/
    explicit_instantiation.cc: New.
    * testsuite/20_util/is_trivially_move_constructible/value.cc: New.

Attachment: trivial-traits-complete2.diff
Description: Text document


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