From 7ba3a79f323c58c7aa8be7e7365a28e8615361fb Mon Sep 17 00:00:00 2001 From: Andreas Krug <153394595+Andreas-Krug@users.noreply.github.com> Date: Wed, 22 Apr 2026 07:59:14 +0200 Subject: [PATCH] [set.intersection] Fix indentation --- source/algorithms.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/algorithms.tex b/source/algorithms.tex index af6c2c9865..2332a5d508 100644 --- a/source/algorithms.tex +++ b/source/algorithms.tex @@ -10539,8 +10539,8 @@ requires @\libconcept{mergeable}@ ranges::set_intersection_result ranges::set_intersection(Ep&& exec, I1 first1, S1 last1, - I2 first2, S2 last2, O result, OutS result_last, - Comp comp = {}, Proj1 proj1 = {}, Proj2 proj2 = {}); + I2 first2, S2 last2, O result, OutS result_last, + Comp comp = {}, Proj1 proj1 = {}, Proj2 proj2 = {}); template<@\exposconcept{execution-policy}@ Ep, @\exposconcept{sized-random-access-range}@ R1, @\exposconcept{sized-random-access-range}@ R2, @\exposconcept{sized-random-access-range}@ OutR, class Comp = ranges::less, class Proj1 = identity, class Proj2 = identity>