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

@@ -29,7 +29,7 @@ static constexpr Domain tidal_domain("tidal");
TidalSessionManager::TidalSessionManager(EventLoop &event_loop,
const char *_base_url, const char *_token,
const char *_username,
const char *_password) noexcept
const char *_password)
:base_url(_base_url), token(_token),
username(_username), password(_password),
curl(event_loop),