Skip to content

Commit e266f99

Browse files
authored
[alg.transform] Fix indentation (#7778)
1 parent 5f4b8aa commit e266f99

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/algorithms.tex

+2-2
Original file line numberDiff line numberDiff line change
@@ -5548,14 +5548,14 @@
55485548
@\libconcept{weakly_incrementable}@ O, @\libconcept{copy_constructible}@ F, class Proj1 = identity,
55495549
class Proj2 = identity>
55505550
requires @\libconcept{indirectly_writable}@<O, indirect_result_t<F&, projected<I1, Proj1>,
5551-
projected<I2, Proj2>>>
5551+
projected<I2, Proj2>>>
55525552
constexpr ranges::binary_transform_result<I1, I2, O>
55535553
ranges::transform(I1 first1, S1 last1, I2 first2, S2 last2, O result,
55545554
F binary_op, Proj1 proj1 = {}, Proj2 proj2 = {});
55555555
template<@\libconcept{input_range}@ R1, @\libconcept{input_range}@ R2, @\libconcept{weakly_incrementable}@ O,
55565556
@\libconcept{copy_constructible}@ F, class Proj1 = identity, class Proj2 = identity>
55575557
requires @\libconcept{indirectly_writable}@<O, indirect_result_t<F&, projected<iterator_t<R1>, Proj1>,
5558-
projected<iterator_t<R2>, Proj2>>>
5558+
projected<iterator_t<R2>, Proj2>>>
55595559
constexpr ranges::binary_transform_result<borrowed_iterator_t<R1>, borrowed_iterator_t<R2>, O>
55605560
ranges::transform(R1&& r1, R2&& r2, O result,
55615561
F binary_op, Proj1 proj1 = {}, Proj2 proj2 = {});

0 commit comments

Comments
 (0)