Skip to content

Commit 9f03812

Browse files
jensmaurerzygoloid
authored andcommitted
[alg.count,mismatch,alg.equal] Fix indentation of declaration.
Fixes #1753.
1 parent 0059794 commit 9f03812

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

source/algorithms.tex

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1933,7 +1933,7 @@
19331933
\begin{itemdecl}
19341934
template<class InputIterator, class T>
19351935
typename iterator_traits<InputIterator>::difference_type
1936-
count(InputIterator first, InputIterator last, const T& value);
1936+
count(InputIterator first, InputIterator last, const T& value);
19371937
template<class ExecutionPolicy, class ForwardIterator, class T>
19381938
typename iterator_traits<ForwardIterator>::difference_type
19391939
count(ExecutionPolicy&& exec, ForwardIterator first, ForwardIterator last, const T& value);
@@ -1969,8 +1969,8 @@
19691969
\begin{itemdecl}
19701970
template<class InputIterator1, class InputIterator2>
19711971
pair<InputIterator1, InputIterator2>
1972-
mismatch(InputIterator1 first1, InputIterator1 last1,
1973-
InputIterator2 first2);
1972+
mismatch(InputIterator1 first1, InputIterator1 last1,
1973+
InputIterator2 first2);
19741974
template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2>
19751975
pair<ForwardIterator1, ForwardIterator2>
19761976
mismatch(ExecutionPolicy&& exec,
@@ -1980,8 +1980,8 @@
19801980
template<class InputIterator1, class InputIterator2,
19811981
class BinaryPredicate>
19821982
pair<InputIterator1, InputIterator2>
1983-
mismatch(InputIterator1 first1, InputIterator1 last1,
1984-
InputIterator2 first2, BinaryPredicate pred);
1983+
mismatch(InputIterator1 first1, InputIterator1 last1,
1984+
InputIterator2 first2, BinaryPredicate pred);
19851985
template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2,
19861986
class BinaryPredicate>
19871987
pair<ForwardIterator1, ForwardIterator2>
@@ -2050,7 +2050,7 @@
20502050
ForwardIterator2 first2);
20512051

20522052
template<class InputIterator1, class InputIterator2,
2053-
class BinaryPredicate>
2053+
class BinaryPredicate>
20542054
bool equal(InputIterator1 first1, InputIterator1 last1,
20552055
InputIterator2 first2, BinaryPredicate pred);
20562056
template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2,
@@ -2068,7 +2068,7 @@
20682068
ForwardIterator2 first2, ForwardIterator2 last2);
20692069

20702070
template<class InputIterator1, class InputIterator2,
2071-
class BinaryPredicate>
2071+
class BinaryPredicate>
20722072
bool equal(InputIterator1 first1, InputIterator1 last1,
20732073
InputIterator2 first2, InputIterator2 last2,
20742074
BinaryPredicate pred);

0 commit comments

Comments
 (0)