tag/Id3Unique: add noexcept

This commit is contained in:
Max Kellermann 2019-04-16 10:38:57 +02:00
parent 3cbadf42a5
commit edafe4cad6

View File

@ -25,7 +25,7 @@
#include <memory>
struct Id3Delete {
void operator()(struct id3_tag *tag) {
void operator()(struct id3_tag *tag) noexcept {
id3_tag_delete(tag);
}
};