Re: [PATCH 2/7] libstdc++: Annotate most lambdas with always_inline

2023-02-16 Thread Jonathan Wakely via Gcc-patches
On Wed, 15 Feb 2023 at 20:50, Matthias Kretz via Libstdc++ wrote: > > > > All of the annotated lambdas are simply a necessary means for > implementing these functions and should never result in an actual > function call. Many of these lambdas would go away if C++ had better > language support for

[PATCH 2/7] libstdc++: Annotate most lambdas with always_inline

2023-02-15 Thread Matthias Kretz via Gcc-patches
All of the annotated lambdas are simply a necessary means for implementing these functions and should never result in an actual function call. Many of these lambdas would go away if C++ had better language support for packs. Signed-off-by: Matthias Kretz libstdc++-v3/ChangeLog: PR lib