Skip to content

Commit

Permalink
mqtt: not supported w/ the current build options
Browse files Browse the repository at this point in the history
  • Loading branch information
mcspr committed Sep 10, 2024
1 parent 00c972c commit 67483f3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion code/espurna/mqtt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,9 @@ struct MqttConfigureError {
return _err;
}

constexpr bool operator==(const MqttConfigureError&) const = default;
constexpr bool operator==(const MqttConfigureError& other) const {
return _err == other._err;
}

MqttConfigureError(const MqttConfigureError&) = default;
MqttConfigureError& operator=(const MqttConfigureError&) = default;
Expand Down

0 comments on commit 67483f3

Please sign in to comment.