mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-05 23:31:21 +08:00
basic_string.h (operator[]): Allow s[s.size()] in debug mode, but not pedantic mode.
* include/bits/basic_string.h (operator[]): Allow s[s.size()] in debug mode, but not pedantic mode. From-SVN: r99967
This commit is contained in:
parent
a2391c6a35
commit
bfbc811b25
@ -1,3 +1,8 @@
|
||||
2005-05-19 Jonathan Wakely <redi@gcc.gnu.org>
|
||||
|
||||
* include/bits/basic_string.h (operator[]): Allow s[s.size()] in
|
||||
debug mode, but not pedantic mode.
|
||||
|
||||
2005-05-19 Jan Beulich <jbeulich@novell.com>
|
||||
|
||||
* libsupc++/unwind-cxx.h: Include cstdlib.
|
||||
|
@ -695,7 +695,10 @@ namespace std
|
||||
reference
|
||||
operator[](size_type __pos)
|
||||
{
|
||||
_GLIBCXX_DEBUG_ASSERT(__pos < size());
|
||||
// allow pos == size() as v3 extension:
|
||||
_GLIBCXX_DEBUG_ASSERT(__pos <= size());
|
||||
// but be strict in pedantic mode:
|
||||
_GLIBCXX_DEBUG_PEDASSERT(__pos < size());
|
||||
_M_leak();
|
||||
return _M_data()[__pos];
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user