Skip to content

Commit d9c5cc0

Browse files
authored
[alg.find.last] Fix indentation (#8567)
1 parent 5c1ebe9 commit d9c5cc0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/algorithms.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5057,7 +5057,7 @@
50575057
requires @\libconcept{indirect_binary_predicate}@<ranges::equal_to, projected<I, Proj>, const T*>
50585058
subrange<I> ranges::find_last(Ep&& exec, I first, S last, const T& value, Proj proj = {});
50595059
template<@\exposconcept{execution-policy}@ Ep, @\exposconcept{sized-random-access-range}@ R, class Proj = identity,
5060-
class T = projected_value_t<iterator_t<R>, Proj>>
5060+
class T = projected_value_t<iterator_t<R>, Proj>>
50615061
requires
50625062
@\libconcept{indirect_binary_predicate}@<ranges::equal_to, projected<iterator_t<R>, Proj>, const T*>
50635063
borrowed_subrange_t<R> ranges::find_last(Ep&& exec, R&& r, const T& value, Proj proj = {});
@@ -5073,8 +5073,8 @@
50735073
class Proj = identity, @\libconcept{indirect_unary_predicate}@<projected<I, Proj>> Pred>
50745074
subrange<I> ranges::find_last_if(Ep&& exec, I first, S last, Pred pred, Proj proj = {});
50755075
template<@\exposconcept{execution-policy}@ Ep, @\exposconcept{sized-random-access-range}@ R,
5076-
class Proj = identity,
5077-
@\libconcept{indirect_unary_predicate}@<projected<iterator_t<R>, Proj>> Pred>
5076+
class Proj = identity,
5077+
@\libconcept{indirect_unary_predicate}@<projected<iterator_t<R>, Proj>> Pred>
50785078
borrowed_subrange_t<R> ranges::find_last_if(Ep&& exec, R&& r, Pred pred, Proj proj = {});
50795079

50805080
template<@\libconcept{forward_iterator}@ I, @\libconcept{sentinel_for}@<I> S, class Proj = identity,

0 commit comments

Comments
 (0)