Commit 3988d179 by Doug Gregor Committed by Doug Gregor

basic_string.h (basic_string::insert): Deprecate GNU extension.

* include/bits/basic_string.h (basic_string::insert): Deprecate
  GNU extension.

From-SVN: r69677
parent c5785644
2003-07-22 Doug Gregor <dgregor@apple.com>
* include/bits/basic_string.h (basic_string::insert): Deprecate
GNU extension.
2003-07-21 Benjamin Kosnik <bkoz@redhat.com> 2003-07-21 Benjamin Kosnik <bkoz@redhat.com>
* scripts/testsuite_flags.in (--build-includes): Remove extraneous * scripts/testsuite_flags.in (--build-includes): Remove extraneous
...@@ -8,7 +13,7 @@ ...@@ -8,7 +13,7 @@
* testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc: Same. * testsuite/27_io/basic_ostream/sentry/char/3983-fstream.cc: Same.
* testsuite/27_io/basic_istream/sentry/char/3983-sstream.cc: Same. * testsuite/27_io/basic_istream/sentry/char/3983-sstream.cc: Same.
2003-07-21 Doug Gregor <dgregor@apple.com.> 2003-07-21 Doug Gregor <dgregor@apple.com>
* include/bits/boost_concept_check.h: * include/bits/boost_concept_check.h:
(_EqualityComparableConcept::__constraints): Remove != from the (_EqualityComparableConcept::__constraints): Remove != from the
......
...@@ -981,7 +981,7 @@ namespace std ...@@ -981,7 +981,7 @@ namespace std
* The value of the string doesn't change if an error is thrown. * The value of the string doesn't change if an error is thrown.
*/ */
iterator iterator
insert(iterator __p, _CharT __c = _CharT()) insert(iterator __p, _CharT __c)
{ {
const size_type __pos = __p - _M_ibegin(); const size_type __pos = __p - _M_ibegin();
this->insert(_M_check(__pos), size_type(1), __c); this->insert(_M_check(__pos), size_type(1), __c);
...@@ -989,6 +989,25 @@ namespace std ...@@ -989,6 +989,25 @@ namespace std
return this->_M_ibegin() + __pos; return this->_M_ibegin() + __pos;
} }
#ifdef _GLIBCXX_DEPRECATED
/**
* @brief Insert one default-constructed character.
* @param p Iterator referencing position in string to insert at.
* @return Iterator referencing newly inserted char.
* @throw std::length_error If new length exceeds @c max_size().
* @throw std::out_of_range If @a p is beyond the end of this string.
*
* Inserts a default-constructed character at position
* referenced by @a p. If adding character causes the length
* to exceed max_size(), length_error is thrown. If @a p is
* beyond end of string, out_of_range is thrown. The value of
* the string doesn't change if an error is thrown.
*/
iterator
insert(iterator __p)
{ return this->insert(__p, _CharT()); }
#endif /* _GLIBCXX_DEPRECATED */
/** /**
* @brief Remove characters. * @brief Remove characters.
* @param pos Index of first character to remove (default 0). * @param pos Index of first character to remove (default 0).
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment