Commit 21669dfe by Paolo Carlini Committed by Paolo Carlini

forward_list.h: Slightly tweak two comments.

2012-03-23  Paolo Carlini  <paolo.carlini@oracle.com>

	* include/bits/forward_list.h: Slightly tweak two comments.

From-SVN: r185737
parent d01f346b
2012-03-23 Paolo Carlini <paolo.carlini@oracle.com>
* include/bits/forward_list.h: Slightly tweak two comments.
2012-03-22 Benjamin Kosnik <bkoz@redhat.com> 2012-03-22 Benjamin Kosnik <bkoz@redhat.com>
* doc/Makefile.am: XML output names have only .xml suffix. * doc/Makefile.am: XML output names have only .xml suffix.
......
...@@ -536,8 +536,7 @@ _GLIBCXX_BEGIN_NAMESPACE_CONTAINER ...@@ -536,8 +536,7 @@ _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
* @param __al An allocator object. * @param __al An allocator object.
* *
* Create a %forward_list consisting of copies of the elements * Create a %forward_list consisting of copies of the elements
* in the initializer_list @a __il. This is linear in the number * in the initializer_list @a __il. This is linear in __il.size().
* of elements of __il.
*/ */
forward_list(std::initializer_list<_Tp> __il, forward_list(std::initializer_list<_Tp> __il,
const _Alloc& __al = _Alloc()) const _Alloc& __al = _Alloc())
...@@ -586,7 +585,7 @@ _GLIBCXX_BEGIN_NAMESPACE_CONTAINER ...@@ -586,7 +585,7 @@ _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
* *
* Replace the contents of the %forward_list with copies of the * Replace the contents of the %forward_list with copies of the
* elements in the initializer_list @a __il. This is linear in * elements in the initializer_list @a __il. This is linear in
* the number of elements of __il. * __il.size().
*/ */
forward_list& forward_list&
operator=(std::initializer_list<_Tp> __il) operator=(std::initializer_list<_Tp> __il)
......
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