Commit ac2dca4d by François Dumont

2019-07-26 François Dumont <fdumont@gcc.gnu.org>

	* testsuite/util/testsuite_iterators.h
	(bidirectional_iterator_wrapper): Fix type comment.
	(random_access_iterator_wrapper): Likewise.

From-SVN: r273824
parent cc00790c
2019-07-26 François Dumont <fdumont@gcc.gnu.org>
* testsuite/util/testsuite_iterators.h
(bidirectional_iterator_wrapper): Fix type comment.
(random_access_iterator_wrapper): Likewise.
2019-07-25 Jonathan Wakely <jwakely@redhat.com> 2019-07-25 Jonathan Wakely <jwakely@redhat.com>
* include/std/bit (endian): Move definition here as per P1612R1. * include/std/bit (endian): Move definition here as per P1612R1.
......
...@@ -344,7 +344,7 @@ namespace __gnu_test ...@@ -344,7 +344,7 @@ namespace __gnu_test
* @brief bidirectional_iterator wrapper for pointer * @brief bidirectional_iterator wrapper for pointer
* *
* This class takes a pointer and wraps it to provide exactly * This class takes a pointer and wraps it to provide exactly
* the requirements of a forward_iterator. It should not be * the requirements of a bidirectional_iterator. It should not be
* instantiated directly, but generated from a test_container * instantiated directly, but generated from a test_container
*/ */
template<class T> template<class T>
...@@ -408,7 +408,7 @@ namespace __gnu_test ...@@ -408,7 +408,7 @@ namespace __gnu_test
* @brief random_access_iterator wrapper for pointer * @brief random_access_iterator wrapper for pointer
* *
* This class takes a pointer and wraps it to provide exactly * This class takes a pointer and wraps it to provide exactly
* the requirements of a forward_iterator. It should not be * the requirements of a random_access_iterator. It should not be
* instantiated directly, but generated from a test_container * instantiated directly, but generated from a test_container
*/ */
template<class T> template<class T>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment