Commit 401f06f3 authored by Max Kellermann's avatar Max Kellermann

playlist/EmbeddedCue: add `noexcept`

parent 2b4e9cc6
......@@ -59,15 +59,15 @@ public:
CueParser *parser;
public:
EmbeddedCuePlaylist()
EmbeddedCuePlaylist() noexcept
:parser(nullptr) {
}
virtual ~EmbeddedCuePlaylist() {
~EmbeddedCuePlaylist() noexcept override {
delete parser;
}
virtual std::unique_ptr<DetachedSong> NextSong() override;
std::unique_ptr<DetachedSong> NextSong() override;
};
class ExtractCuesheetTagHandler final : public NullTagHandler {
......
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