From 63a7e49036eb6f2834e0e94df6320d07f1bc3a92 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ion=20Gazta=C3=B1aga?= Date: Wed, 15 Aug 2012 11:21:29 +0000 Subject: [PATCH] Ticket #7232 [SVN r80047] --- include/boost/container/string.hpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/include/boost/container/string.hpp b/include/boost/container/string.hpp index 2a64cec..7b5e040 100644 --- a/include/boost/container/string.hpp +++ b/include/boost/container/string.hpp @@ -1368,9 +1368,6 @@ class basic_string //! Requires: p is a valid iterator on *this. //! //! Effects: Inserts n copies of c before the character referred to by p. - //! - //! Returns: 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 @@ class basic_string //! Requires: p is a valid iterator on *this. [first,last) is a valid range. //! //! Effects: Equivalent to insert(p - begin(), basic_string(first, last)). - //! - //! Returns: An iterator which refers to the copy of the first - //! inserted character, or p if first == last. template void insert(const_iterator p, InputIter first, InputIter last) {