Const correctness fix for optionlist

This commit is contained in:
AlexandreRouma
2023-03-09 15:14:33 +01:00
parent 5f0858bab2
commit 314b8bf72d
4 changed files with 25 additions and 25 deletions

View File

@ -39,7 +39,7 @@ namespace hermes {
uint8_t gatewareVerMin;
BoardID boardId;
bool operator==(const Info& b) {
bool operator==(const Info& b) const {
return !memcmp(mac, b.mac, 6);
}
};