mirror of
https://github.com/boostorg/container.git
synced 2025-08-02 14:04:26 +02:00
Fixed Trac #9481 ("Minor comment typo in Boost.Container")
This commit is contained in:
@@ -1216,6 +1216,7 @@ use [*Boost.Container]? There are several reasons for that:
|
||||
[section:release_notes_boost_1_62_00 Boost 1.62 Release]
|
||||
|
||||
* Fixed bugs:
|
||||
* [@https://svn.boost.org/trac/boost/ticket/9481 Trac #9481: ['"Minor comment typo in Boost.Container"]].
|
||||
* [@https://svn.boost.org/trac/boost/ticket/11170 Trac #11170: ['"Doc slip for index_of"]].
|
||||
* [@https://svn.boost.org/trac/boost/ticket/12177 Trac #12177: ['"vector::priv_merge uses unqualified uintptr_t"]].
|
||||
* [@https://svn.boost.org/trac/boost/ticket/12183 Trac #12183: ['"GCC 6.1 thinks boost::container::string violates strict aliasing"]].
|
||||
|
@@ -408,7 +408,7 @@ class list
|
||||
return this->assign(cvalue_iterator(val, n), cvalue_iterator());
|
||||
}
|
||||
|
||||
//! <b>Effects</b>: Assigns the the range [first, last) to *this.
|
||||
//! <b>Effects</b>: Assigns the range [first, last) to *this.
|
||||
//!
|
||||
//! <b>Throws</b>: If memory allocation throws or
|
||||
//! T's constructor from dereferencing InpIt throws.
|
||||
@@ -433,7 +433,7 @@ class list
|
||||
}
|
||||
|
||||
#if !defined(BOOST_NO_CXX11_HDR_INITIALIZER_LIST)
|
||||
//! <b>Effects</b>: Assigns the the range [il.begin(), il.end()) to *this.
|
||||
//! <b>Effects</b>: Assigns the range [il.begin(), il.end()) to *this.
|
||||
//!
|
||||
//! <b>Throws</b>: If memory allocation throws or
|
||||
//! T's constructor from dereferencing std::initializer_list iterator throws.
|
||||
@@ -948,7 +948,7 @@ class list
|
||||
|
||||
//! <b>Requires</b>: p must be a valid iterator of *this.
|
||||
//!
|
||||
//! <b>Effects</b>: Erases the element at p p.
|
||||
//! <b>Effects</b>: Erases the element at p.
|
||||
//!
|
||||
//! <b>Throws</b>: Nothing.
|
||||
//!
|
||||
@@ -1045,7 +1045,7 @@ class list
|
||||
//! this' allocator and x's allocator shall compare equal
|
||||
//!
|
||||
//! <b>Effects</b>: Transfers the value pointed by i, from list x to this list,
|
||||
//! before the the element pointed by p. No destructors or copy constructors are called.
|
||||
//! before the element pointed by p. No destructors or copy constructors are called.
|
||||
//! If p == i or p == ++i, this function is a null operation.
|
||||
//!
|
||||
//! <b>Throws</b>: Nothing
|
||||
@@ -1066,7 +1066,7 @@ class list
|
||||
//! this' allocator and x's allocator shall compare equal.
|
||||
//!
|
||||
//! <b>Effects</b>: Transfers the value pointed by i, from list x to this list,
|
||||
//! before the the element pointed by p. No destructors or copy constructors are called.
|
||||
//! before the element pointed by p. No destructors or copy constructors are called.
|
||||
//! If p == i or p == ++i, this function is a null operation.
|
||||
//!
|
||||
//! <b>Throws</b>: Nothing
|
||||
@@ -1087,7 +1087,7 @@ class list
|
||||
//! this' allocator and x's allocator shall compare equal
|
||||
//!
|
||||
//! <b>Effects</b>: Transfers the range pointed by first and last from list x to this list,
|
||||
//! before the the element pointed by p. No destructors or copy constructors are called.
|
||||
//! before the element pointed by p. No destructors or copy constructors are called.
|
||||
//!
|
||||
//! <b>Throws</b>: Nothing
|
||||
//!
|
||||
@@ -1109,7 +1109,7 @@ class list
|
||||
//! this' allocator and x's allocator shall compare equal.
|
||||
//!
|
||||
//! <b>Effects</b>: Transfers the range pointed by first and last from list x to this list,
|
||||
//! before the the element pointed by p. No destructors or copy constructors are called.
|
||||
//! before the element pointed by p. No destructors or copy constructors are called.
|
||||
//!
|
||||
//! <b>Throws</b>: Nothing
|
||||
//!
|
||||
@@ -1129,7 +1129,7 @@ class list
|
||||
//! n == distance(first, last). this' allocator and x's allocator shall compare equal
|
||||
//!
|
||||
//! <b>Effects</b>: Transfers the range pointed by first and last from list x to this list,
|
||||
//! before the the element pointed by p. No destructors or copy constructors are called.
|
||||
//! before the element pointed by p. No destructors or copy constructors are called.
|
||||
//!
|
||||
//! <b>Throws</b>: Nothing
|
||||
//!
|
||||
@@ -1150,7 +1150,7 @@ class list
|
||||
//! n == distance(first, last). this' allocator and x's allocator shall compare equal
|
||||
//!
|
||||
//! <b>Effects</b>: Transfers the range pointed by first and last from list x to this list,
|
||||
//! before the the element pointed by p. No destructors or copy constructors are called.
|
||||
//! before the element pointed by p. No destructors or copy constructors are called.
|
||||
//!
|
||||
//! <b>Throws</b>: Nothing
|
||||
//!
|
||||
|
@@ -794,7 +794,7 @@ class slist
|
||||
//! <b>Requires</b>: prev_p must be a valid iterator of *this.
|
||||
//!
|
||||
//! <b>Effects</b>: Inserts a move constructed copy object from the value after the
|
||||
//! p pointed by prev_p.
|
||||
//! element pointed by prev_p.
|
||||
//!
|
||||
//! <b>Returns</b>: An iterator to the inserted element.
|
||||
//!
|
||||
@@ -1404,7 +1404,7 @@ class slist
|
||||
|
||||
//! <b>Requires</b>: p must be a valid iterator of *this.
|
||||
//!
|
||||
//! <b>Effects</b>: Erases the element at p p.
|
||||
//! <b>Effects</b>: Erases the element at p.
|
||||
//!
|
||||
//! <b>Throws</b>: Nothing.
|
||||
//!
|
||||
@@ -1458,7 +1458,7 @@ class slist
|
||||
//! this' allocator and x's allocator shall compare equal
|
||||
//!
|
||||
//! <b>Effects</b>: Transfers the value pointed by i, from list x to this list,
|
||||
//! before the the element pointed by p. No destructors or copy constructors are called.
|
||||
//! before the element pointed by p. No destructors or copy constructors are called.
|
||||
//! If p == i or p == ++i, this function is a null operation.
|
||||
//!
|
||||
//! <b>Throws</b>: Nothing
|
||||
@@ -1475,7 +1475,7 @@ class slist
|
||||
//! this' allocator and x's allocator shall compare equal.
|
||||
//!
|
||||
//! <b>Effects</b>: Transfers the value pointed by i, from list x to this list,
|
||||
//! before the the element pointed by p. No destructors or copy constructors are called.
|
||||
//! before the element pointed by p. No destructors or copy constructors are called.
|
||||
//! If p == i or p == ++i, this function is a null operation.
|
||||
//!
|
||||
//! <b>Throws</b>: Nothing
|
||||
@@ -1491,7 +1491,7 @@ class slist
|
||||
//! by this list. first and last must point to elements contained in list x.
|
||||
//!
|
||||
//! <b>Effects</b>: Transfers the range pointed by first and last from list x to this list,
|
||||
//! before the the element pointed by p. No destructors or copy constructors are called.
|
||||
//! before the element pointed by p. No destructors or copy constructors are called.
|
||||
//! this' allocator and x's allocator shall compare equal.
|
||||
//!
|
||||
//! <b>Throws</b>: Nothing
|
||||
@@ -1509,7 +1509,7 @@ class slist
|
||||
//! this' allocator and x's allocator shall compare equal
|
||||
//!
|
||||
//! <b>Effects</b>: Transfers the range pointed by first and last from list x to this list,
|
||||
//! before the the element pointed by p. No destructors or copy constructors are called.
|
||||
//! before the element pointed by p. No destructors or copy constructors are called.
|
||||
//!
|
||||
//! <b>Throws</b>: Nothing
|
||||
//!
|
||||
|
Reference in New Issue
Block a user