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
This commit is contained in:
Paolo Carlini 2012-03-23 13:26:49 +00:00 committed by Paolo Carlini
parent d01f346b75
commit 21669dfe20
2 changed files with 6 additions and 3 deletions

View File

@ -1,3 +1,7 @@
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>
* doc/Makefile.am: XML output names have only .xml suffix.

View File

@ -536,8 +536,7 @@ _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
* @param __al An allocator object.
*
* Create a %forward_list consisting of copies of the elements
* in the initializer_list @a __il. This is linear in the number
* of elements of __il.
* in the initializer_list @a __il. This is linear in __il.size().
*/
forward_list(std::initializer_list<_Tp> __il,
const _Alloc& __al = _Alloc())
@ -586,7 +585,7 @@ _GLIBCXX_BEGIN_NAMESPACE_CONTAINER
*
* Replace the contents of the %forward_list with copies of the
* elements in the initializer_list @a __il. This is linear in
* the number of elements of __il.
* __il.size().
*/
forward_list&
operator=(std::initializer_list<_Tp> __il)