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

2024-05-10 Thread Ken Matsui
On Fri, May 10, 2024 at 1:23 PM Jason Merrill wrote: > > On 5/10/24 12:14, Ken Matsui wrote: > > Removed the redundant check and fixed the flow. Could you please review > > this > > again? > > Looks good! All the compiler trait patches are OK. Thank you so much for your reviews! > > > -- >8 -

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

2024-05-10 Thread Jason Merrill
On 5/10/24 12:14, Ken Matsui wrote: Removed the redundant check and fixed the flow. Could you please review this again? Looks good! All the compiler trait patches are OK. -- >8 -- This patch implements built-in trait for std::is_invocable. gcc/cp/ChangeLog: * cp-trait.def: Define

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

2024-05-10 Thread Ken Matsui
Removed the redundant check and fixed the flow. Could you please review this again? -- >8 -- This patch implements built-in trait for std::is_invocable. gcc/cp/ChangeLog: * cp-trait.def: Define __is_invocable. * constraint.cc (diagnose_trait_expr): Handle CPTK_IS_INVOCABLE.