input/qobuz: remove bogus "noexcept"

This change was missing in 47fa8c4cf6
This commit is contained in:
Max Kellermann 2018-01-25 15:19:33 +01:00
parent fd0a5a1116
commit b221bd7472
2 changed files with 2 additions and 2 deletions

View File

@ -68,7 +68,7 @@ QobuzClient::GetCurl() noexcept
} }
void void
QobuzClient::StartLogin() noexcept QobuzClient::StartLogin()
{ {
assert(!session.IsDefined()); assert(!session.IsDefined());
assert(!login_request); assert(!login_request);

View File

@ -94,7 +94,7 @@ public:
const std::multimap<std::string, std::string> &query) const noexcept; const std::multimap<std::string, std::string> &query) const noexcept;
private: private:
void StartLogin() noexcept; void StartLogin();
void InvokeHandlers() noexcept; void InvokeHandlers() noexcept;