diff options
author | Max Kellermann <max@musicpd.org> | 2019-07-05 08:35:39 +0200 |
---|---|---|
committer | Max Kellermann <max@musicpd.org> | 2019-07-05 08:57:51 +0200 |
commit | 4650a903b46b2c82d844b6d832a49cd4e9e7e769 (patch) | |
tree | 4aa060b02d9aa7bee1f1a8999c3af05d511cb1e4 /test/DumpDecoderClient.hxx | |
parent | 94c9fafe165f34bf370b22aa5882630bbf42bada (diff) |
decoder/Bridge: add `noexcept`
Diffstat (limited to 'test/DumpDecoderClient.hxx')
-rw-r--r-- | test/DumpDecoderClient.hxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/DumpDecoderClient.hxx b/test/DumpDecoderClient.hxx index 630b0fc0d..8c95802d2 100644 --- a/test/DumpDecoderClient.hxx +++ b/test/DumpDecoderClient.hxx @@ -41,14 +41,15 @@ public: /* virtual methods from DecoderClient */ void Ready(AudioFormat audio_format, - bool seekable, SignedSongTime duration) override; + bool seekable, SignedSongTime duration) noexcept override; DecoderCommand GetCommand() noexcept override; void CommandFinished() noexcept override; SongTime GetSeekTime() noexcept override; uint64_t GetSeekFrame() noexcept override; void SeekError() noexcept override; InputStreamPtr OpenUri(const char *uri) override; - size_t Read(InputStream &is, void *buffer, size_t length) override; + size_t Read(InputStream &is, + void *buffer, size_t length) noexcept override; void SubmitTimestamp(FloatDuration t) noexcept override; DecoderCommand SubmitData(InputStream *is, const void *data, size_t length, |