update fur current gpu config

This commit is contained in:
uvos 2024-11-14 12:36:38 +01:00
parent ef6b0c7d4b
commit 8c93f843b5
3 changed files with 80 additions and 99 deletions

View file

@ -13,5 +13,5 @@ public:
public:
Sensor() = default;
Sensor(std::string chipI, std::string nameI, int idI = 0): name(nameI), chip(chipI), id(idI) {}
bool operator==(const Sensor& other) {return other.name == name && other.chip == chip;}
bool operator==(const Sensor& other) const {return other.name == name && other.chip == chip;}
};