it can be used by Option::validate() if
operator>(const variant<>&, const variant<>&) requires this.
Signed-off-by: Kefu Chai <kchai@redhat.com>
friend bool operator<(const entity_addrvec_t& l, const entity_addrvec_t& r) {
return l.v < r.v; // see lexicographical_compare()
}
+ friend bool operator>(const entity_addrvec_t& l, const entity_addrvec_t& r) {
+ return l.v > r.v; // see lexicographical_compare()
+ }
};
WRITE_CLASS_ENCODER_FEATURES(entity_addrvec_t);