Value::compare() is now const and has an actual implementation with unit tests.

This commit is contained in:
Baptiste Lepilleur
2011-05-02 20:11:48 +00:00
parent e3cc0f004b
commit 1837a1c508
4 changed files with 38 additions and 29 deletions

View File

@@ -256,7 +256,7 @@ namespace Json {
bool operator ==( const Value &other ) const;
bool operator !=( const Value &other ) const;
int compare( const Value &other );
int compare( const Value &other ) const;
const char *asCString() const;
std::string asString() const;