[PATCH 15/17] coroutines: Removed unused private member in cp_coroutine_transform

2025-06-25 Thread Martin Jambor
Hi, when building GCC with clang, it warns that the private member suffix in class cp_coroutine_transform (defined in gcc/cp/coroutines.h) is not used which indeed looks like it is the case. This patch therefore removes it. Bootstrapped and tested on x86_64-linx. OK for master? Alternatively,

Re: [PATCH 15/17] coroutines: Removed unused private member in cp_coroutine_transform

2025-06-25 Thread Iain Sandoe
> On 25 Jun 2025, at 15:17, Martin Jambor wrote: > > Hi, > > when building GCC with clang, it warns that the private member suffix > in class cp_coroutine_transform (defined in gcc/cp/coroutines.h) is > not used which indeed looks like it is the case. This patch therefore > removes it. > >