Re: [PATCH v26 13/13] libstdc++: Optimize std::is_nothrow_invocable compilation performance

2024-06-13 Thread Jonathan Wakely
On 11/05/24 02:01 -0700, Ken Matsui wrote: This patch optimizes the compilation performance of std::is_nothrow_invocable by dispatching to the new __is_nothrow_invocable built-in trait. OK, thanks. libstdc++-v3/ChangeLog: * include/std/type_traits (is_nothrow_invocable): Use

[PATCH v26 13/13] libstdc++: Optimize std::is_nothrow_invocable compilation performance

2024-05-11 Thread Ken Matsui
This patch optimizes the compilation performance of std::is_nothrow_invocable by dispatching to the new __is_nothrow_invocable built-in trait. libstdc++-v3/ChangeLog: * include/std/type_traits (is_nothrow_invocable): Use __is_nothrow_invocable built-in trait. * testsuite/2