https://gcc.gnu.org/bugzilla/show_bug.cgi?id=81482

--- Comment #2 from kloetzl <fabian-gcc at kloetzl dot info> ---
I don't think that the runtime cost of the copies is measurable. My bigger
issue is that this quirks exposes the internal behaviour of the algorithm
implementation; In this case the fact that remove_if calls find_if. My
expectation would be that the standard algorithms are opaque.

Another solution might be to implement a compiler warning: If a lambda is
mutable, captures by value and gets passed to a standard algorithm, produce a
warning. This will not catch all problematic cases with internal copies of the
predicate but might avoid the biggest pitfalls.

Reply via email to