Re: [PATCH v20 26/40] libstdc++: Optimize is_object trait performance

2023-10-16 Thread Ken Matsui
On Mon, Oct 16, 2023 at 11:04 AM Patrick Palka wrote: > > On Sun, 15 Oct 2023, Ken Matsui wrote: > > > This patch optimizes the performance of the is_object trait by dispatching > > to > > the new __is_function and __is_reference built-in traits. > > > > libstdc++-v3/ChangeLog: > > * includ

Re: [PATCH v20 26/40] libstdc++: Optimize is_object trait performance

2023-10-16 Thread Patrick Palka
On Sun, 15 Oct 2023, Ken Matsui wrote: > This patch optimizes the performance of the is_object trait by dispatching to > the new __is_function and __is_reference built-in traits. > > libstdc++-v3/ChangeLog: > * include/std/type_traits (is_object): Use __is_function and > __is_referenc

[PATCH v20 26/40] libstdc++: Optimize is_object trait performance

2023-10-15 Thread Ken Matsui
This patch optimizes the performance of the is_object trait by dispatching to the new __is_function and __is_reference built-in traits. libstdc++-v3/ChangeLog: * include/std/type_traits (is_object): Use __is_function and __is_reference built-in traits. (is_object_v): Likewi