From edafe4cad629f8ee9533e1a0ce34262587512287 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 16 Apr 2019 10:38:57 +0200 Subject: [PATCH] tag/Id3Unique: add `noexcept` --- src/tag/Id3Unique.hxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tag/Id3Unique.hxx b/src/tag/Id3Unique.hxx index b2117e0d8..f380010bb 100644 --- a/src/tag/Id3Unique.hxx +++ b/src/tag/Id3Unique.hxx @@ -25,7 +25,7 @@ #include struct Id3Delete { - void operator()(struct id3_tag *tag) { + void operator()(struct id3_tag *tag) noexcept { id3_tag_delete(tag); } };