From 5fd10057d566aa8e47b15486688336c254077205 Mon Sep 17 00:00:00 2001 From: Andreas Krug <153394595+Andreas-Krug@users.noreply.github.com> Date: Fri, 5 Dec 2025 22:53:49 +0100 Subject: [PATCH] [alg.adjacent.find] Fix indentation --- source/algorithms.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/algorithms.tex b/source/algorithms.tex index 0129c3fe19..a4bfb09a89 100644 --- a/source/algorithms.tex +++ b/source/algorithms.tex @@ -5335,11 +5335,11 @@ template<@\exposconcept{execution-policy}@ Ep, @\libconcept{random_access_iterator}@ I, @\libconcept{sized_sentinel_for}@ S, class Proj = identity, @\libconcept{indirect_binary_predicate}@, - projected> Pred = ranges::equal_to> + projected> Pred = ranges::equal_to> I ranges::adjacent_find(Ep&& exec, I first, S last, Pred pred = {}, Proj proj = {}); template<@\exposconcept{execution-policy}@ Ep, @\exposconcept{sized-random-access-range}@ R, class Proj = identity, @\libconcept{indirect_binary_predicate}@, Proj>, - projected, Proj>> Pred = ranges::equal_to> + projected, Proj>> Pred = ranges::equal_to> borrowed_iterator_t ranges::adjacent_find(Ep&& exec, R&& r, Pred pred = {}, Proj proj = {}); \end{itemdecl}