On Thu, Jun 13, 2024 at 5:46 AM Jonathan Wakely wrote:
>
> On 23/05/24 15:15 -0700, Ken Matsui wrote:
> >On Thu, May 23, 2024 at 3:15 PM Patrick Palka wrote:
> >>
> >> On Sat, 11 May 2024, Ken Matsui wrote:
> >>
> >> > This patch optimizes the compilation performance of std::is_const
> >> > by di
On 23/05/24 15:15 -0700, Ken Matsui wrote:
On Thu, May 23, 2024 at 3:15 PM Patrick Palka wrote:
On Sat, 11 May 2024, Ken Matsui wrote:
> This patch optimizes the compilation performance of std::is_const
> by dispatching to the new __is_const built-in trait.
This patch series LGTM
Thank you
On 11/05/24 02:01 -0700, Ken Matsui wrote:
This patch optimizes the compilation performance of std::is_const
by dispatching to the new __is_const built-in trait.
OK, thanks.
libstdc++-v3/ChangeLog:
* include/std/type_traits (is_const): Use __is_const built-in
trait.
(
On Thu, May 23, 2024 at 3:15 PM Patrick Palka wrote:
>
> On Sat, 11 May 2024, Ken Matsui wrote:
>
> > This patch optimizes the compilation performance of std::is_const
> > by dispatching to the new __is_const built-in trait.
>
> This patch series LGTM
Thank you!
>
> >
> > libstdc++-v3/ChangeLog:
On Sat, 11 May 2024, Ken Matsui wrote:
> This patch optimizes the compilation performance of std::is_const
> by dispatching to the new __is_const built-in trait.
This patch series LGTM
>
> libstdc++-v3/ChangeLog:
>
> * include/std/type_traits (is_const): Use __is_const built-in
> t
This patch optimizes the compilation performance of std::is_const
by dispatching to the new __is_const built-in trait.
libstdc++-v3/ChangeLog:
* include/std/type_traits (is_const): Use __is_const built-in
trait.
(is_const_v): Likewise.
Signed-off-by: Ken Matsui
---
libs