playlist/EmbeddedCue: add noexcept

This commit is contained in:
Max Kellermann 2019-04-26 14:57:03 +02:00
parent 2b4e9cc635
commit 401f06f367

View File

@ -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 {