Re: [PATCH v22 20/23] c++: Implement __is_invocable built-in trait

2024-05-10 Thread Ken Matsui
On Thu, May 9, 2024 at 9:16 AM Jason Merrill wrote: > > On 5/8/24 01:04, Ken Matsui wrote: > > Fixed the reference_wrapper case. I used non_ref_datum_type to avoid > > potentially multiple build_trait_object calls. > > > > -- >8 -- > > > > This patch implements built-in trait for

Re: [PATCH v22 20/23] c++: Implement __is_invocable built-in trait

2024-05-09 Thread Jason Merrill
On 5/8/24 01:04, Ken Matsui wrote: Fixed the reference_wrapper case. I used non_ref_datum_type to avoid potentially multiple build_trait_object calls. -- >8 -- This patch implements built-in trait for std::is_invocable. gcc/cp/ChangeLog: * cp-trait.def: Define __is_invocable.

[PATCH v22 20/23] c++: Implement __is_invocable built-in trait

2024-05-07 Thread Ken Matsui
Fixed the reference_wrapper case. I used non_ref_datum_type to avoid potentially multiple build_trait_object calls. -- >8 -- This patch implements built-in trait for std::is_invocable. gcc/cp/ChangeLog: * cp-trait.def: Define __is_invocable. * constraint.cc