xo-object2: + operator==() for DString

This commit is contained in:
Roland Conybeare 2026-01-15 17:23:15 -05:00
commit e752e5ae7b

View file

@ -245,6 +245,11 @@ namespace xo {
///@}
};
inline bool operator==(const DString & lhs, const DString & rhs) {
return DString::compare(lhs, rhs) == 0;
}
} /*namespace scm*/
} /*namespace xo*/