diff options
author | Jonathan Wakely <jwakely.gcc@gmail.com> | 2013-06-08 16:12:13 +0000 |
---|---|---|
committer | Jonathan Wakely <redi@gcc.gnu.org> | 2013-06-08 17:12:13 +0100 |
commit | f7fbb0036add83f6a1bd4b80fd8defb8820312be (patch) | |
tree | 2f38fba2ba34dabdab8dacae50f6a8e640cce001 /libstdc++-v3/testsuite/util | |
parent | db113eda6da16755879ae51d5b9c8f23e997779c (diff) | |
download | gcc-f7fbb0036add83f6a1bd4b80fd8defb8820312be.zip gcc-f7fbb0036add83f6a1bd4b80fd8defb8820312be.tar.gz gcc-f7fbb0036add83f6a1bd4b80fd8defb8820312be.tar.bz2 |
stl_algo.h (is_permutation): Add overloads from N3671.
* include/bits/stl_algo.h (is_permutation): Add overloads from N3671.
* include/bits/stl_algobase.h (equal, mismatch): Likewise.
* testsuite/25_algorithms/equal/1.cc: Remove duplicate test case.
* testsuite/25_algorithms/equal/2.cc: New.
* testsuite/25_algorithms/equal/check_type2.cc: New.
* testsuite/25_algorithms/is_permutationqual/2.cc: New.
* testsuite/25_algorithms/is_permutationqual/check_type2.cc: New.
* testsuite/25_algorithms/mismatch/2.cc: New.
* testsuite/25_algorithms/mismatch/check_type2.cc: New.
* testsuite/util/testsuite_iterators.h: Fix spelling.
From-SVN: r199854
Diffstat (limited to 'libstdc++-v3/testsuite/util')
-rw-r--r-- | libstdc++-v3/testsuite/util/testsuite_iterators.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/libstdc++-v3/testsuite/util/testsuite_iterators.h b/libstdc++-v3/testsuite/util/testsuite_iterators.h index 757282b..9bb5858 100644 --- a/libstdc++-v3/testsuite/util/testsuite_iterators.h +++ b/libstdc++-v3/testsuite/util/testsuite_iterators.h @@ -116,7 +116,7 @@ namespace __gnu_test * * This class takes a pointer and wraps it to provide exactly * the requirements of a output_iterator. It should not be - * instansiated directly, but generated from a test_container + * instantiated directly, but generated from a test_container */ template<class T> struct output_iterator_wrapper @@ -177,7 +177,7 @@ namespace __gnu_test * * This class takes a pointer and wraps it to provide exactly * the requirements of a input_iterator. It should not be - * instansiated directly, but generated from a test_container + * instantiated directly, but generated from a test_container */ template<class T> class input_iterator_wrapper @@ -259,7 +259,7 @@ namespace __gnu_test * * This class takes a pointer and wraps it to provide exactly * the requirements of a forward_iterator. It should not be - * instansiated directly, but generated from a test_container + * instantiated directly, but generated from a test_container */ template<class T> struct forward_iterator_wrapper : public input_iterator_wrapper<T> @@ -313,7 +313,7 @@ namespace __gnu_test * * This class takes a pointer and wraps it to provide exactly * the requirements of a forward_iterator. It should not be - * instansiated directly, but generated from a test_container + * instantiated directly, but generated from a test_container */ template<class T> struct bidirectional_iterator_wrapper : public forward_iterator_wrapper<T> @@ -377,7 +377,7 @@ namespace __gnu_test * * This class takes a pointer and wraps it to provide exactly * the requirements of a forward_iterator. It should not be - * instansiated directly, but generated from a test_container + * instantiated directly, but generated from a test_container */ template<class T> struct random_access_iterator_wrapper |