Ticket #6540: Erroneous default argument in basic_string::compare overload

[SVN r76985]
This commit is contained in:
Ion Gaztañaga
2012-02-11 18:36:23 +00:00
parent 5a62b6e47e
commit 852d1b9cb2
2 changed files with 2 additions and 1 deletions

View File

@@ -588,6 +588,7 @@ use [*Boost.Container]? There are several reasons for that:
[section:release_notes_boost_1_49_00 Boost 1.49 Release]
* Fixed bugs
[@https://svn.boost.org/trac/boost/ticket/6540 #6540],
[@https://svn.boost.org/trac/boost/ticket/6499 #6499],
[@https://svn.boost.org/trac/boost/ticket/6336 #6336],
[@https://svn.boost.org/trac/boost/ticket/6335 #6335],

View File

@@ -2045,7 +2045,7 @@ class basic_string
//!
//! <b>Returns</b>: basic_string(*this, pos, n1).compare(basic_string(s, n2)).
int compare(size_type pos1, size_type n1,
const CharT* s, size_type n2 = npos) const
const CharT* s, size_type n2) const
{
if (pos1 > size())
this->throw_out_of_range();