From 17562dc90ba39b9d19bef3e2ce4c0a5efe2f0d26 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Wed, 20 Oct 2021 09:41:19 +0200 Subject: [PATCH] output/pipewire: remove misplaced `noexcept` --- src/output/plugins/PipeWireOutputPlugin.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/output/plugins/PipeWireOutputPlugin.cxx b/src/output/plugins/PipeWireOutputPlugin.cxx index d12fa8693..ab1ee9673 100644 --- a/src/output/plugins/PipeWireOutputPlugin.cxx +++ b/src/output/plugins/PipeWireOutputPlugin.cxx @@ -242,7 +242,7 @@ private: void Cancel() noexcept override; bool Pause() noexcept override; - void SendTag(const Tag &tag) noexcept override; + void SendTag(const Tag &tag) override; }; static constexpr auto stream_events = PipeWireOutput::MakeStreamEvents(); @@ -656,7 +656,7 @@ PipeWireOutput::SetMixer(PipeWireMixer &_mixer) noexcept } void -PipeWireOutput::SendTag(const Tag &tag) noexcept +PipeWireOutput::SendTag(const Tag &tag) { CheckThrowError();