summaryrefslogtreecommitdiff
path: root/test/DumpDecoderClient.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2019-07-05 08:35:39 +0200
committerMax Kellermann <max@musicpd.org>2019-07-05 08:57:51 +0200
commit4650a903b46b2c82d844b6d832a49cd4e9e7e769 (patch)
tree4aa060b02d9aa7bee1f1a8999c3af05d511cb1e4 /test/DumpDecoderClient.hxx
parent94c9fafe165f34bf370b22aa5882630bbf42bada (diff)
decoder/Bridge: add `noexcept`
Diffstat (limited to 'test/DumpDecoderClient.hxx')
-rw-r--r--test/DumpDecoderClient.hxx5
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,