Re: [PATCH v25 00/33] Optimize type traits compilation performance

2023-10-23 Thread Ken Matsui
I accidentally sent is_invocable patches as well, but those have no changes. On Mon, Oct 23, 2023 at 7:04 PM Ken Matsui wrote: > > This patch series optimizes type traits compilation performance by > implementing built-in type traits and using them in libstdc++. > > Changes in v25: > > *

[PATCH v25 00/33] Optimize type traits compilation performance

2023-10-23 Thread Ken Matsui
This patch series optimizes type traits compilation performance by implementing built-in type traits and using them in libstdc++. Changes in v25: * Optimized the __is_pointer implementation in cpp_type_traits.h. * Fix compilation error in cpp_type_traits.h with Clang 16. *