Add metadata to transaction difference logging: RIPD-775

This commit is contained in:
Howard Hinnant
2015-01-27 13:04:05 -05:00
committed by Vinnie Falco
parent 71d6874236
commit bfc436dccd
3 changed files with 117 additions and 58 deletions

View File

@@ -183,11 +183,11 @@ public:
void sort (bool (*compare) (const STObject & o1, const STObject & o2));
bool operator== (const STArray & s)
bool operator== (const STArray & s) const
{
return value == s.value;
}
bool operator!= (const STArray & s)
bool operator!= (const STArray & s) const
{
return value != s.value;
}