Skip to content

Commit 67483f3

Browse files
committed
mqtt: not supported w/ the current build options
1 parent 00c972c commit 67483f3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

code/espurna/mqtt.cpp

+3-1
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,9 @@ struct MqttConfigureError {
578578
return _err;
579579
}
580580

581-
constexpr bool operator==(const MqttConfigureError&) const = default;
581+
constexpr bool operator==(const MqttConfigureError& other) const {
582+
return _err == other._err;
583+
}
582584

583585
MqttConfigureError(const MqttConfigureError&) = default;
584586
MqttConfigureError& operator=(const MqttConfigureError&) = default;

0 commit comments

Comments
 (0)