Skip to content

Commit 27d185c

Browse files
Dawn Perchikzygoloid
authored andcommitted
[algorithm.syn] Fix indenting of parameters in count_if, fill_n, merge, and set_union in synopsis.
1 parent 56ca63a commit 27d185c

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

source/algorithms.tex

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@
165165
template<class ExecutionPolicy, class ForwardIterator, class Predicate>
166166
typename iterator_traits<ForwardIterator>::difference_type
167167
count_if(ExecutionPolicy&& exec, // see \ref{algorithms.parallel.overloads}
168-
ForwardIterator first, ForwardIterator last, Predicate pred);
168+
ForwardIterator first, ForwardIterator last, Predicate pred);
169169

170170
// \ref{mismatch}, mismatch
171171
template<class InputIterator1, class InputIterator2>
@@ -427,7 +427,7 @@
427427
template<class ExecutionPolicy, class ForwardIterator,
428428
class Size, class T>
429429
ForwardIterator fill_n(ExecutionPolicy&& exec, // see \ref{algorithms.parallel.overloads}
430-
ForwardIterator first, Size n, const T& value);
430+
ForwardIterator first, Size n, const T& value);
431431

432432
// \ref{alg.generate}, generate
433433
template<class ForwardIterator, class Generator>
@@ -752,15 +752,15 @@
752752
template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2,
753753
class ForwardIterator>
754754
ForwardIterator merge(ExecutionPolicy&& exec, // see \ref{algorithms.parallel.overloads}
755-
ForwardIterator1 first1, ForwardIterator1 last1,
756-
ForwardIterator2 first2, ForwardIterator2 last2,
757-
ForwardIterator result);
755+
ForwardIterator1 first1, ForwardIterator1 last1,
756+
ForwardIterator2 first2, ForwardIterator2 last2,
757+
ForwardIterator result);
758758
template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2,
759759
class ForwardIterator, class Compare>
760760
ForwardIterator merge(ExecutionPolicy&& exec, // see \ref{algorithms.parallel.overloads}
761-
ForwardIterator1 first1, ForwardIterator1 last1,
762-
ForwardIterator2 first2, ForwardIterator2 last2,
763-
ForwardIterator result, Compare comp);
761+
ForwardIterator1 first1, ForwardIterator1 last1,
762+
ForwardIterator2 first2, ForwardIterator2 last2,
763+
ForwardIterator result, Compare comp);
764764

765765
template<class BidirectionalIterator>
766766
void inplace_merge(BidirectionalIterator first,
@@ -809,15 +809,15 @@
809809
template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2,
810810
class ForwardIterator>
811811
ForwardIterator set_union(ExecutionPolicy&& exec, // see \ref{algorithms.parallel.overloads}
812-
ForwardIterator1 first1, ForwardIterator1 last1,
813-
ForwardIterator2 first2, ForwardIterator2 last2,
814-
ForwardIterator result);
812+
ForwardIterator1 first1, ForwardIterator1 last1,
813+
ForwardIterator2 first2, ForwardIterator2 last2,
814+
ForwardIterator result);
815815
template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2,
816816
class ForwardIterator, class Compare>
817817
ForwardIterator set_union(ExecutionPolicy&& exec, // see \ref{algorithms.parallel.overloads}
818-
ForwardIterator1 first1, ForwardIterator1 last1,
819-
ForwardIterator2 first2, ForwardIterator2 last2,
820-
ForwardIterator result, Compare comp);
818+
ForwardIterator1 first1, ForwardIterator1 last1,
819+
ForwardIterator2 first2, ForwardIterator2 last2,
820+
ForwardIterator result, Compare comp);
821821

822822
template<class InputIterator1, class InputIterator2, class OutputIterator>
823823
constexpr OutputIterator set_intersection(

0 commit comments

Comments
 (0)