mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-23 06:09:26 +08:00
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:
parent
d01f346b75
commit
21669dfe20
@ -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.
|
||||
|
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user