diff options
author | Max Kellermann <max@musicpd.org> | 2019-08-02 14:44:00 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2019-08-02 14:44:00 +0200 |
commit | fe2f8c088aa6a4ae97283e0b81a76bbbc51132fc (patch) | |
tree | 1602d399418031dc812f0e0c6f6c5df90a6e3ee9 /src/zeroconf | |
parent | af99f9fc9000e76990795a164dd51fd2bafc34c3 (diff) |
Partition, ...: add `noexcept` to callback methods
Diffstat (limited to 'src/zeroconf')
-rw-r--r-- | src/zeroconf/AvahiPoll.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/zeroconf/AvahiPoll.cxx b/src/zeroconf/AvahiPoll.cxx index 791fce12e..94365ee1a 100644 --- a/src/zeroconf/AvahiPoll.cxx +++ b/src/zeroconf/AvahiPoll.cxx @@ -107,7 +107,7 @@ public: } private: - void OnTimeout() { + void OnTimeout() noexcept { callback(this, userdata); } }; |