From 437e10ba66a98e0213fae87c36b2e4b58a019100 Mon Sep 17 00:00:00 2001 From: Andreas Krug <153394595+Andreas-Krug@users.noreply.github.com> Date: Sat, 18 Oct 2025 21:52:17 +0200 Subject: [PATCH] [alg.foreach] Fix indentation --- source/algorithms.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/algorithms.tex b/source/algorithms.tex index 7b92b9bf7e..4e42b29011 100644 --- a/source/algorithms.tex +++ b/source/algorithms.tex @@ -4729,8 +4729,8 @@ \begin{itemdecl} template<@\exposconcept{execution-policy}@ Ep, @\libconcept{random_access_iterator}@ I, @\libconcept{sized_sentinel_for}@ S, - class Proj = identity, - @\libconcept{indirectly_unary_invocable}@> Fun> + class Proj = identity, + @\libconcept{indirectly_unary_invocable}@> Fun> I ranges::for_each(Ep&& exec, I first, S last, Fun f, Proj proj = {}); template<@\exposconcept{execution-policy}@ Ep, @\exposconcept{sized-random-access-range}@ R, class Proj = identity, @\libconcept{indirectly_unary_invocable}@, Proj>> Fun>