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

@@ -77,7 +77,7 @@ MakeTrackUrl(QobuzClient &client, const char *track_id)
QobuzTrackRequest::QobuzTrackRequest(QobuzClient &client,
const QobuzSession &session,
const char *track_id,
QobuzTrackHandler &_handler) noexcept
QobuzTrackHandler &_handler)
:request(client.GetCurl(),
MakeTrackUrl(client, track_id).c_str(),
*this),