Commit 17562dc9 authored by Max Kellermann's avatar Max Kellermann

output/pipewire: remove misplaced `noexcept`

parent 7b243167
......@@ -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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment