summaryrefslogtreecommitdiff
path: root/src/TagPrint.hxx
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2018-01-21 11:30:47 +0100
committerMax Kellermann <max@musicpd.org>2018-01-21 11:30:47 +0100
commiteac8caa4de8ac03c2850de3ef56d2c259b96adf1 (patch)
treea377674c9a2a7962e60296f7c9374a204eeb2e1d /src/TagPrint.hxx
parent61eb2aa328aa2ae231b84e53914693f3e56021e5 (diff)
TagPrint: add "noexcept"
Diffstat (limited to 'src/TagPrint.hxx')
-rw-r--r--src/TagPrint.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/TagPrint.hxx b/src/TagPrint.hxx
index 2faf09099..45c8265ea 100644
--- a/src/TagPrint.hxx
+++ b/src/TagPrint.hxx
@@ -28,15 +28,15 @@ struct Tag;
class Response;
void
-tag_print_types(Response &response);
+tag_print_types(Response &response) noexcept;
void
-tag_print(Response &response, TagType type, const char *value);
+tag_print(Response &response, TagType type, const char *value) noexcept;
void
-tag_print_values(Response &response, const Tag &tag);
+tag_print_values(Response &response, const Tag &tag) noexcept;
void
-tag_print(Response &response, const Tag &tag);
+tag_print(Response &response, const Tag &tag) noexcept;
#endif