aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--api/direct_bt/BTAddress.hpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/api/direct_bt/BTAddress.hpp b/api/direct_bt/BTAddress.hpp
index 3b91e45e..01f54a37 100644
--- a/api/direct_bt/BTAddress.hpp
+++ b/api/direct_bt/BTAddress.hpp
@@ -202,16 +202,13 @@ namespace direct_bt {
std::string toString() const;
} );
- inline bool operator<(const EUI48& lhs, const EUI48& rhs) noexcept
- { return memcmp(&lhs, &rhs, sizeof(EUI48))<0; }
-
inline bool operator==(const EUI48& lhs, const EUI48& rhs) noexcept {
if( &lhs == &rhs ) {
return true;
}
//return !memcmp(&lhs, &rhs, sizeof(EUI48));
const uint8_t * a = lhs.b;
- const uint8_t * b = lhs.b;
+ const uint8_t * b = rhs.b;
return a[0] == b[0] &&
a[1] == b[1] &&
a[2] == b[2] &&