summaryrefslogtreecommitdiff
path: root/src/TagFile.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2018-01-21 11:42:04 +0100
committerMax Kellermann <max@musicpd.org>2018-01-21 11:53:42 +0100
commit1e9da09f62c1b4bde9848fbaa706b2fbe94d8aab (patch)
tree6d3c2521c03564266c65d9e314ca13564b980df7 /src/TagFile.hxx
parent5caf351c446237ecfa5bf5e8b00dcb0d9a0322a1 (diff)
TagFile: add "noexcept"
Diffstat (limited to 'src/TagFile.hxx')
-rw-r--r--src/TagFile.hxx5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/TagFile.hxx b/src/TagFile.hxx
index c5673cb64..851cc9633 100644
--- a/src/TagFile.hxx
+++ b/src/TagFile.hxx
@@ -34,7 +34,8 @@ class TagBuilder;
* found)
*/
bool
-tag_file_scan(Path path, const TagHandler &handler, void *handler_ctx);
+tag_file_scan(Path path,
+ const TagHandler &handler, void *handler_ctx) noexcept;
/**
* Scan the tags of a song file. Invokes matching decoder plugins,
@@ -45,6 +46,6 @@ tag_file_scan(Path path, const TagHandler &handler, void *handler_ctx);
* found)
*/
bool
-tag_file_scan(Path path, TagBuilder &builder);
+tag_file_scan(Path path, TagBuilder &builder) noexcept;
#endif