aboutsummaryrefslogtreecommitdiff
path: root/libstdc++-v3/include
diff options
context:
space:
mode:
authorpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>2001-12-18 12:06:01 +0000
committerpaolo <paolo@138bc75d-0d04-0410-961f-82ee72b054a4>2001-12-18 12:06:01 +0000
commitc0b0ec6d5fb706b3aa21950cb399e36106d061f8 (patch)
tree6b55135c18fbb681b1d52c6bf644558f301470c7 /libstdc++-v3/include
parent1993c4de7b2364f59ad8d3eb2ea6e29afb30724c (diff)
2001-12-18 Paolo Carlini <pcarlini@unitus.it>
Nathan Myers <ncm@cantrip.org> * include/bits/basic_string.h (assign(__str, __pos, __n)): Call assign(__s, __n). (assign(__s, __n)): Terminate the string with _S_terminal. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@48151 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/include')
-rw-r--r--libstdc++-v3/include/bits/basic_string.h25
1 files changed, 6 insertions, 19 deletions
diff --git a/libstdc++-v3/include/bits/basic_string.h b/libstdc++-v3/include/bits/basic_string.h
index af550c9a01b..170fdcdebf6 100644
--- a/libstdc++-v3/include/bits/basic_string.h
+++ b/libstdc++-v3/include/bits/basic_string.h
@@ -478,26 +478,12 @@ namespace std
basic_string&
assign(const basic_string& __str, size_type __pos, size_type __n)
{
- if (__pos > __str.size())
+ const size_type __strsize = __str.size();
+ if (__pos > __strsize)
__throw_out_of_range("basic_string::assign");
- if (_M_rep()->_M_is_shared() || _M_rep() != __str._M_rep())
- return _M_replace_safe(_M_ibegin(), _M_iend(),
- __str._M_check(__pos),
- __str._M_fold(__pos, __n));
- else
- {
- // Work in-place.
- bool __testn = __n < __str.size() - __pos;
- const size_type __newsize = __testn ? __n : __str.size() - __pos;
- // Avoid move, if possible.
- if (__pos >= __newsize)
- traits_type::copy(_M_data(), __str._M_data() + __pos, __newsize);
- else if (__pos)
- traits_type::move(_M_data(), __str._M_data() + __pos, __newsize);
- // else nothing (avoid calling move unnecessarily)
- _M_rep()->_M_length = __newsize;
- return *this;
- }
+ const bool __testn = __n < __strsize - __pos;
+ const size_type __newsize = __testn ? __n : __strsize - __pos;
+ return this->assign(__str._M_data() + __pos, __newsize);
}
basic_string&
@@ -517,6 +503,7 @@ namespace std
else if (__pos)
traits_type::move(_M_data(), __s, __n);
_M_rep()->_M_length = __n;
+ _M_data()[__n] = _Rep::_S_terminal;
return *this;
}
}