We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 00c972c commit 67483f3Copy full SHA for 67483f3
code/espurna/mqtt.cpp
@@ -578,7 +578,9 @@ struct MqttConfigureError {
578
return _err;
579
}
580
581
- constexpr bool operator==(const MqttConfigureError&) const = default;
+ constexpr bool operator==(const MqttConfigureError& other) const {
582
+ return _err == other._err;
583
+ }
584
585
MqttConfigureError(const MqttConfigureError&) = default;
586
MqttConfigureError& operator=(const MqttConfigureError&) = default;
0 commit comments