TagPrint: add "noexcept"

This commit is contained in:
Max Kellermann
2018-01-21 11:30:47 +01:00
parent 61eb2aa328
commit eac8caa4de
2 changed files with 8 additions and 8 deletions

View File

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