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
+1 -1
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();