File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ bool BLEAddress::operator!=(const BLEAddress& otherAddress) const {
7171}
7272
7373bool BLEAddress::operator <(const BLEAddress& otherAddress) const {
74- return memcmp (otherAddress. m_address , m_address, ESP_BD_ADDR_LEN) < 0 ;
74+ return memcmp (m_address, otherAddress. m_address , ESP_BD_ADDR_LEN) < 0 ;
7575}
7676
7777bool BLEAddress::operator <=(const BLEAddress& otherAddress) const {
@@ -83,7 +83,7 @@ bool BLEAddress::operator>=(const BLEAddress& otherAddress) const {
8383}
8484
8585bool BLEAddress::operator >(const BLEAddress& otherAddress) const {
86- return memcmp (otherAddress. m_address , m_address, ESP_BD_ADDR_LEN) > 0 ;
86+ return memcmp (m_address, otherAddress. m_address , ESP_BD_ADDR_LEN) > 0 ;
8787}
8888
8989/* *
You can’t perform that action at this time.
0 commit comments