|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r80047 - trunk/boost/container
From: igaztanaga_at_[hidden]
Date: 2012-08-15 07:21:30
Author: igaztanaga
Date: 2012-08-15 07:21:29 EDT (Wed, 15 Aug 2012)
New Revision: 80047
URL: http://svn.boost.org/trac/boost/changeset/80047
Log:
Ticket #7232
Text files modified:
trunk/boost/container/string.hpp | 6 ------
1 files changed, 0 insertions(+), 6 deletions(-)
Modified: trunk/boost/container/string.hpp
==============================================================================
--- trunk/boost/container/string.hpp (original)
+++ trunk/boost/container/string.hpp 2012-08-15 07:21:29 EDT (Wed, 15 Aug 2012)
@@ -1368,9 +1368,6 @@
//! <b>Requires</b>: p is a valid iterator on *this.
//!
//! <b>Effects</b>: Inserts n copies of c before the character referred to by p.
- //!
- //! <b>Returns</b>: An iterator which refers to the copy of the first
- //! inserted character, or p if n == 0.
void insert(const_iterator p, size_type n, CharT c)
{
this->insert(p, cvalue_iterator(c, n), cvalue_iterator());
@@ -1379,9 +1376,6 @@
//! <b>Requires</b>: p is a valid iterator on *this. [first,last) is a valid range.
//!
//! <b>Effects</b>: Equivalent to insert(p - begin(), basic_string(first, last)).
- //!
- //! <b>Returns</b>: An iterator which refers to the copy of the first
- //! inserted character, or p if first == last.
template <class InputIter>
void insert(const_iterator p, InputIter first, InputIter last)
{
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk