On Mon, 9 Dec 2024 at 17:44, Jonathan Wakely wrote:
>
> On Mon, 9 Dec 2024 at 17:43, Jonathan Wakely wrote:
> >
> > On Mon, 9 Dec 2024 at 13:49, Jonathan Wakely wrote:
> > >
> > > On 09/12/24 13:22 +0100, Giuseppe D'Angelo wrote:
> > > >Hello,
> > > >
> > > >This ports some misc test away from is
On Mon, 9 Dec 2024 at 13:49, Jonathan Wakely wrote:
>
> On 09/12/24 13:22 +0100, Giuseppe D'Angelo wrote:
> >Hello,
> >
> >This ports some misc test away from is_trivial.
>
> This is fine, thanks.
I'm seeing a number of FAILures not fixed by this patch:
FAIL: experimental/iterator/requirements.cc
On Mon, 9 Dec 2024 at 17:43, Jonathan Wakely wrote:
>
> On Mon, 9 Dec 2024 at 13:49, Jonathan Wakely wrote:
> >
> > On 09/12/24 13:22 +0100, Giuseppe D'Angelo wrote:
> > >Hello,
> > >
> > >This ports some misc test away from is_trivial.
> >
> > This is fine, thanks.
>
> I'm seeing a number of FAIL
02:44:30 +0100
Subject: [PATCH 5/6] libstdc++: port tests away from is_trivial
In preparation for the deprecation of is_trivial (P3247R2).
Mostly a mechanical exercise, replacing is_trivial with
is_trivially_copyable and/or is_trivially_default_constructible
depending on the cases.
libstdc
Hello,
This ports some misc test away from is_trivial.
Thanks,
--
Giuseppe D'Angelo
From 7b0548ee8732b5211a50cba7781b4fe25d9f5f04 Mon Sep 17 00:00:00 2001
From: Giuseppe D'Angelo
Date: Mon, 9 Dec 2024 02:44:30 +0100
Subject: [PATCH 5/6] libstdc++: port tests away from is_t