| 80 | |
| 81 | AdapterLUID() { luid.fill(0); } |
| 82 | bool isValid() const { return *this != AdapterLUID(); } |
| 83 | bool operator==(const AdapterLUID& other) const { return luid == other.luid; } |
| 84 | bool operator!=(const AdapterLUID& other) const { return luid != other.luid; } |
| 85 | bool operator<(const AdapterLUID& other) const { return luid < other.luid; } |
nothing calls this directly
no test coverage detected