- Added unit tests for comparison operators (except compare())

- Fixed Value::operator <= implementation (had the semantic of operator >=). Found when addigin unit tests for comparison operators.
This commit is contained in:
Baptiste Lepilleur 2011-05-02 16:53:10 +00:00
parent e0e1fd37cd
commit fb17080142
2 changed files with 4 additions and 1 deletions

View File

@ -86,6 +86,9 @@
- Bug #3139678: stack buffer overflow when parsing a double with a
length of 32 characters.
- Fixed Value::operator <= implementation (had the semantic of operator >=).
Found when addigin unit tests for comparison operators.
* License

View File

@ -600,7 +600,7 @@ Value::operator <( const Value &other ) const
bool
Value::operator <=( const Value &other ) const
{
return !(other > *this);
return !(other < *this);
}
bool