--- nono/lib/macaddr.h 2026/04/29 17:05:35 1.1.1.2 +++ nono/lib/macaddr.h 2026/04/29 17:05:57 1.1.1.3 @@ -134,12 +134,12 @@ class MacAddr } addr; }; -static bool __unused operator==(const MacAddr& lhs, const MacAddr& rhs) +inline bool operator==(const MacAddr& lhs, const MacAddr& rhs) { return (lhs.Get() == rhs.Get()); } -static bool __unused operator!=(const MacAddr& lhs, const MacAddr& rhs) +inline bool operator!=(const MacAddr& lhs, const MacAddr& rhs) { return !(lhs == rhs); }