Browse Source

GitHub issue #993 (???)

pull/2/head
Adam Ierymenko 7 years ago
parent
commit
00d63f6046
  1. 1
      node/Multicaster.hpp

1
node/Multicaster.hpp

@ -168,6 +168,7 @@ private:
MulticastGroup mg;
inline bool operator==(const Key &k) const { return ((nwid == k.nwid)&&(mg == k.mg)); }
inline bool operator!=(const Key &k) const { return ((nwid != k.nwid)||(mg != k.mg)); }
inline unsigned long hashCode() const { return (mg.hashCode() ^ (unsigned long)(nwid ^ (nwid >> 32))); }
};

Loading…
Cancel
Save