filter/Observer: drop bogus "noexcept"

Closes #208.
This commit is contained in:
Max Kellermann 2018-01-29 22:14:27 +01:00
parent 3890bc5a96
commit 6908555ed3
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ public:
return filter->FilterPCM(src); return filter->FilterPCM(src);
} }
ConstBuffer<void> Flush() noexcept override { ConstBuffer<void> Flush() override {
return filter->Flush(); return filter->Flush();
} }
}; };