aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrançois Dumont <fdumont@gcc.gnu.org>2019-07-26 05:05:48 +0000
committerFrançois Dumont <fdumont@gcc.gnu.org>2019-07-26 05:05:48 +0000
commitac2dca4daf516c6972df1f5ef66e64b3c8f12bc2 (patch)
tree082dff079c655f289154827b01ee235245ee83cb
parentcc00790cd3b4a7b9d2a207acf26a422cf07047b3 (diff)
downloadgcc-ac2dca4daf516c6972df1f5ef66e64b3c8f12bc2.zip
gcc-ac2dca4daf516c6972df1f5ef66e64b3c8f12bc2.tar.gz
gcc-ac2dca4daf516c6972df1f5ef66e64b3c8f12bc2.tar.bz2
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
-rw-r--r--libstdc++-v3/ChangeLog6
-rw-r--r--libstdc++-v3/testsuite/util/testsuite_iterators.h4
2 files changed, 8 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 21f352a..c9c338f 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,9 @@
+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>
* include/std/bit (endian): Move definition here as per P1612R1.
diff --git a/libstdc++-v3/testsuite/util/testsuite_iterators.h b/libstdc++-v3/testsuite/util/testsuite_iterators.h
index ac646a5..42e4274 100644
--- a/libstdc++-v3/testsuite/util/testsuite_iterators.h
+++ b/libstdc++-v3/testsuite/util/testsuite_iterators.h
@@ -344,7 +344,7 @@ namespace __gnu_test
* @brief bidirectional_iterator wrapper for pointer
*
* 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
*/
template<class T>
@@ -408,7 +408,7 @@ namespace __gnu_test
* @brief random_access_iterator wrapper for pointer
*
* 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
*/
template<class T>