diff options
author | Max Kellermann <max@musicpd.org> | 2017-11-26 12:39:09 +0100 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2017-11-26 12:39:09 +0100 |
commit | 520c520512a2063c6241ac8c63710850e5f74a25 (patch) | |
tree | 1cdf06dab77dc4645f9dfb99c19b3ce7107a0eac /src/Partition.cxx | |
parent | a6910313b4a43190f86b1618ac8bd3e331702cf2 (diff) |
player/Listener: add "noexcept"
Diffstat (limited to 'src/Partition.cxx')
-rw-r--r-- | src/Partition.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Partition.cxx b/src/Partition.cxx index 39768249e..5bc0a347f 100644 --- a/src/Partition.cxx +++ b/src/Partition.cxx @@ -118,13 +118,13 @@ Partition::OnQueueSongStarted() } void -Partition::OnPlayerSync() +Partition::OnPlayerSync() noexcept { EmitGlobalEvent(SYNC_WITH_PLAYER); } void -Partition::OnPlayerTagModified() +Partition::OnPlayerTagModified() noexcept { EmitGlobalEvent(TAG_MODIFIED); } |