Skip to content

[cleanup] Use range for instead of std::for_each

Carsten Gräser requested to merge feature/use-range-for into master

This commit replaces all use cases of std::for_each(..., std::mem_fn(...)) by a much more readble plain range for. It does not replace other uses, where this may be more controversial.

This is a follow up to !115 (merged).

Merge request reports