input/qobuz: remove bogus "noexcept"
This change was missing in 47fa8c4cf6
This commit is contained in:
parent
fd0a5a1116
commit
b221bd7472
|
@ -68,7 +68,7 @@ QobuzClient::GetCurl() noexcept
|
|||
}
|
||||
|
||||
void
|
||||
QobuzClient::StartLogin() noexcept
|
||||
QobuzClient::StartLogin()
|
||||
{
|
||||
assert(!session.IsDefined());
|
||||
assert(!login_request);
|
||||
|
|
|
@ -94,7 +94,7 @@ public:
|
|||
const std::multimap<std::string, std::string> &query) const noexcept;
|
||||
|
||||
private:
|
||||
void StartLogin() noexcept;
|
||||
void StartLogin();
|
||||
|
||||
void InvokeHandlers() noexcept;
|
||||
|
||||
|
|
Loading…
Reference in New Issue