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/Partition.cxx | |
parent | af99f9fc9000e76990795a164dd51fd2bafc34c3 (diff) |
Partition, ...: add `noexcept` to callback methods
Diffstat (limited to 'src/Partition.cxx')
-rw-r--r-- | src/Partition.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Partition.cxx b/src/Partition.cxx index 273c08f29..92ab0a6b2 100644 --- a/src/Partition.cxx +++ b/src/Partition.cxx @@ -208,7 +208,7 @@ Partition::OnMixerVolumeChanged(Mixer &, int) noexcept } void -Partition::OnGlobalEvent(unsigned mask) +Partition::OnGlobalEvent(unsigned mask) noexcept { if ((mask & SYNC_WITH_PLAYER) != 0) SyncWithPlayer(); |