diff options
Diffstat (limited to 'db/jsobj.cpp')
-rw-r--r-- | db/jsobj.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/db/jsobj.cpp b/db/jsobj.cpp index e2118bc8b60..963a80c8451 100644 --- a/db/jsobj.cpp +++ b/db/jsobj.cpp @@ -574,7 +574,7 @@ string JSObj::toString() const { /* well ordered compare */ int JSObj::woCompare(const JSObj& r) const { - assert( _objdata ); + assert( _objdata ); if( isEmpty() ) return r.isEmpty() ? 0 : -1; if( r.isEmpty() ) |