input/{tidal,qobus}: add bogus "noexcept"

The CurlRequest constructor can throw exceptions, therefore we must
not use "noexcept".
This commit is contained in:
Max Kellermann
2018-01-25 12:58:58 +01:00
parent 7640609b41
commit 47fa8c4cf6
10 changed files with 10 additions and 10 deletions

View File

@@ -76,7 +76,7 @@ TidalTrackRequest::TidalTrackRequest(CurlGlobal &curl,
const char *base_url, const char *token,
const char *session,
const char *track_id,
TidalTrackHandler &_handler) noexcept
TidalTrackHandler &_handler)
:request(curl, MakeTrackUrl(base_url, track_id).c_str(), *this),
handler(_handler)
{