SongPrint: add "noexcept"

This commit is contained in:
Max Kellermann
2018-01-21 11:30:09 +01:00
parent eac8caa4de
commit 2b67a14155
2 changed files with 12 additions and 10 deletions

View File

@@ -25,15 +25,17 @@ class DetachedSong;
class Response;
void
song_print_info(Response &r, const DetachedSong &song, bool base=false);
song_print_info(Response &r, const DetachedSong &song,
bool base=false) noexcept;
void
song_print_info(Response &r, const LightSong &song, bool base=false);
song_print_info(Response &r, const LightSong &song, bool base=false) noexcept;
void
song_print_uri(Response &r, const LightSong &song, bool base=false);
song_print_uri(Response &r, const LightSong &song, bool base=false) noexcept;
void
song_print_uri(Response &r, const DetachedSong &song, bool base=false);
song_print_uri(Response &r, const DetachedSong &song,
bool base=false) noexcept;
#endif