summaryrefslogtreecommitdiff
path: root/src/output/OutputPlugin.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2017-05-15 23:01:49 +0200
committerMax Kellermann <max@musicpd.org>2017-05-15 23:01:49 +0200
commit4faef28cc56c3ed72a22dbd1cb317cf756217400 (patch)
treef2a3e8168ce9efada0fd0afe9971f90f0dee12b4 /src/output/OutputPlugin.hxx
parent89b900432e0bfb324356f6ae62a09241eb75d251 (diff)
parentb4c9d9c2a72fbf2c6c9090c73fe37fcc94dce1ca (diff)
Merge tag 'v0.20.7'
release v0.20.7
Diffstat (limited to 'src/output/OutputPlugin.hxx')
-rw-r--r--src/output/OutputPlugin.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/output/OutputPlugin.hxx b/src/output/OutputPlugin.hxx
index 48e0f470e..8a81be663 100644
--- a/src/output/OutputPlugin.hxx
+++ b/src/output/OutputPlugin.hxx
@@ -102,7 +102,7 @@ struct AudioOutputPlugin {
*
* @return the duration to wait
*/
- std::chrono::steady_clock::duration (*delay)(AudioOutput *data);
+ std::chrono::steady_clock::duration (*delay)(AudioOutput *data) noexcept;
/**
* Display metadata for the next chunk. Optional method,
@@ -184,7 +184,7 @@ ao_plugin_close(AudioOutput &ao);
gcc_pure
std::chrono::steady_clock::duration
-ao_plugin_delay(AudioOutput &ao);
+ao_plugin_delay(AudioOutput &ao) noexcept;
void
ao_plugin_send_tag(AudioOutput &ao, const Tag &tag);