TagFile: add "noexcept"

This commit is contained in:
Max Kellermann
2018-01-21 11:42:04 +01:00
parent 5caf351c44
commit 1e9da09f62
2 changed files with 10 additions and 8 deletions

View File

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