Fixing whitespace problems
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@111753 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -9,10 +9,10 @@
|
||||
|
||||
// <algorithm>
|
||||
|
||||
// template<ForwardIterator Iter, class T>
|
||||
// template<ForwardIterator Iter, class T>
|
||||
// requires OutputIterator<Iter, Iter::reference>
|
||||
// && OutputIterator<Iter, const T&>
|
||||
// && HasEqualTo<Iter::value_type, T>
|
||||
// && HasEqualTo<Iter::value_type, T>
|
||||
// void
|
||||
// replace(Iter first, Iter last, const T& old_value, const T& new_value);
|
||||
|
||||
|
@@ -9,10 +9,10 @@
|
||||
|
||||
// <algorithm>
|
||||
|
||||
// template<InputIterator InIter, typename OutIter, class T>
|
||||
// requires OutputIterator<OutIter, InIter::reference>
|
||||
// && OutputIterator<OutIter, const T&>
|
||||
// && HasEqualTo<InIter::value_type, T>
|
||||
// template<InputIterator InIter, typename OutIter, class T>
|
||||
// requires OutputIterator<OutIter, InIter::reference>
|
||||
// && OutputIterator<OutIter, const T&>
|
||||
// && HasEqualTo<InIter::value_type, T>
|
||||
// OutIter
|
||||
// replace_copy(InIter first, InIter last, OutIter result, const T& old_value,
|
||||
// const T& new_value);
|
||||
|
@@ -9,11 +9,11 @@
|
||||
|
||||
// <algorithm>
|
||||
|
||||
// template<InputIterator InIter, typename OutIter,
|
||||
// Predicate<auto, InIter::value_type> Pred, class T>
|
||||
// requires OutputIterator<OutIter, InIter::reference>
|
||||
// && OutputIterator<OutIter, const T&>
|
||||
// && CopyConstructible<Pred>
|
||||
// template<InputIterator InIter, typename OutIter,
|
||||
// Predicate<auto, InIter::value_type> Pred, class T>
|
||||
// requires OutputIterator<OutIter, InIter::reference>
|
||||
// && OutputIterator<OutIter, const T&>
|
||||
// && CopyConstructible<Pred>
|
||||
// OutIter
|
||||
// replace_copy_if(InIter first, InIter last, OutIter result, Pred pred, const T& new_value);
|
||||
|
||||
|
@@ -9,10 +9,10 @@
|
||||
|
||||
// <algorithm>
|
||||
|
||||
// template<ForwardIterator Iter, Predicate<auto, Iter::value_type> Pred, class T>
|
||||
// requires OutputIterator<Iter, Iter::reference>
|
||||
// && OutputIterator<Iter, const T&>
|
||||
// && CopyConstructible<Pred>
|
||||
// template<ForwardIterator Iter, Predicate<auto, Iter::value_type> Pred, class T>
|
||||
// requires OutputIterator<Iter, Iter::reference>
|
||||
// && OutputIterator<Iter, const T&>
|
||||
// && CopyConstructible<Pred>
|
||||
// void
|
||||
// replace_if(Iter first, Iter last, Pred pred, const T& new_value);
|
||||
|
||||
|
Reference in New Issue
Block a user