Browse Source

GitHub issue #993 (???)

pull/2/head
Adam Ierymenko 7 years ago
parent
commit
818b7e4a2e
  1. 3
      node/Multicaster.hpp

3
node/Multicaster.hpp

@ -177,6 +177,9 @@ private:
MulticastGroupMember() {}
MulticastGroupMember(const Address &a,uint64_t ts) : address(a),timestamp(ts) {}
inline bool operator<(const MulticastGroupMember &a) const { return (address < a.address); }
inline bool operator==(const MulticastGroupMember &a) const { return (address == a.address); }
inline bool operator!=(const MulticastGroupMember &a) const { return (address != a.address); }
inline bool operator<(const Address &a) const { return (address < a); }
inline bool operator==(const Address &a) const { return (address == a); }
inline bool operator!=(const Address &a) const { return (address != a); }

Loading…
Cancel
Save