summaryrefslogtreecommitdiff
path: root/src/decoder/Bridge.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2019-04-05 08:57:42 +0200
committerMax Kellermann <max@musicpd.org>2019-04-05 08:57:42 +0200
commit61e5828790c179842f9f435a63828d6989f63480 (patch)
tree3d9129300f57c6de07cbb168e5819bf32c61278e /src/decoder/Bridge.cxx
parent6addc9d6e0f172699636f3a2b4dd19e43b351747 (diff)
input/InputStream: add `noexcept` to ReadTag()
Diffstat (limited to 'src/decoder/Bridge.cxx')
-rw-r--r--src/decoder/Bridge.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/decoder/Bridge.cxx b/src/decoder/Bridge.cxx
index 969dbd8b8..871dc503c 100644
--- a/src/decoder/Bridge.cxx
+++ b/src/decoder/Bridge.cxx
@@ -214,7 +214,7 @@ DecoderBridge::DoSendTag(const Tag &tag)
}
bool
-DecoderBridge::UpdateStreamTag(InputStream *is)
+DecoderBridge::UpdateStreamTag(InputStream *is) noexcept
{
auto tag = is != nullptr
? is->LockReadTag()