summaryrefslogtreecommitdiff
path: root/src/TagArchive.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2018-01-21 11:41:13 +0100
committerMax Kellermann <max@musicpd.org>2018-01-21 11:53:42 +0100
commit5caf351c446237ecfa5bf5e8b00dcb0d9a0322a1 (patch)
treedf9d9fc3f1a678289d8a0b3c70a5246ffe4672d0 /src/TagArchive.hxx
parent7d789a984a4a6a906f56d03651a3b0e366a3f0f2 (diff)
TagArchive: add "noexcept"
Diffstat (limited to 'src/TagArchive.hxx')
-rw-r--r--src/TagArchive.hxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/TagArchive.hxx b/src/TagArchive.hxx
index c220006ec..466ba8e78 100644
--- a/src/TagArchive.hxx
+++ b/src/TagArchive.hxx
@@ -36,7 +36,7 @@ class TagBuilder;
*/
bool
tag_archive_scan(ArchiveFile &archive, const char *path_utf8,
- const TagHandler &handler, void *handler_ctx);
+ const TagHandler &handler, void *handler_ctx) noexcept;
/**
* Scan the tags of a song file inside an archive. Invokes matching
@@ -48,6 +48,6 @@ tag_archive_scan(ArchiveFile &archive, const char *path_utf8,
*/
bool
tag_archive_scan(ArchiveFile &archive, const char *path_utf8,
- TagBuilder &builder);
+ TagBuilder &builder) noexcept;
#endif