Skip to content

Commit

Permalink
[alg.count,mismatch,alg.equal] Fix indentation of declaration.
Browse files Browse the repository at this point in the history
Fixes #1753.
  • Loading branch information
jensmaurer authored and zygoloid committed Oct 15, 2017
1 parent 0059794 commit 9f03812
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions source/algorithms.tex
Original file line number Diff line number Diff line change
Expand Up @@ -1933,7 +1933,7 @@
\begin{itemdecl}
template<class InputIterator, class T>
typename iterator_traits<InputIterator>::difference_type
count(InputIterator first, InputIterator last, const T& value);
count(InputIterator first, InputIterator last, const T& value);
template<class ExecutionPolicy, class ForwardIterator, class T>
typename iterator_traits<ForwardIterator>::difference_type
count(ExecutionPolicy&& exec, ForwardIterator first, ForwardIterator last, const T& value);
Expand Down Expand Up @@ -1969,8 +1969,8 @@
\begin{itemdecl}
template<class InputIterator1, class InputIterator2>
pair<InputIterator1, InputIterator2>
mismatch(InputIterator1 first1, InputIterator1 last1,
InputIterator2 first2);
mismatch(InputIterator1 first1, InputIterator1 last1,
InputIterator2 first2);
template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2>
pair<ForwardIterator1, ForwardIterator2>
mismatch(ExecutionPolicy&& exec,
Expand All @@ -1980,8 +1980,8 @@
template<class InputIterator1, class InputIterator2,
class BinaryPredicate>
pair<InputIterator1, InputIterator2>
mismatch(InputIterator1 first1, InputIterator1 last1,
InputIterator2 first2, BinaryPredicate pred);
mismatch(InputIterator1 first1, InputIterator1 last1,
InputIterator2 first2, BinaryPredicate pred);
template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2,
class BinaryPredicate>
pair<ForwardIterator1, ForwardIterator2>
Expand Down Expand Up @@ -2050,7 +2050,7 @@
ForwardIterator2 first2);

template<class InputIterator1, class InputIterator2,
class BinaryPredicate>
class BinaryPredicate>
bool equal(InputIterator1 first1, InputIterator1 last1,
InputIterator2 first2, BinaryPredicate pred);
template<class ExecutionPolicy, class ForwardIterator1, class ForwardIterator2,
Expand All @@ -2068,7 +2068,7 @@
ForwardIterator2 first2, ForwardIterator2 last2);

template<class InputIterator1, class InputIterator2,
class BinaryPredicate>
class BinaryPredicate>
bool equal(InputIterator1 first1, InputIterator1 last1,
InputIterator2 first2, InputIterator2 last2,
BinaryPredicate pred);
Expand Down

0 comments on commit 9f03812

Please sign in to comment.