summaryrefslogtreecommitdiff
path: root/src/input/plugins/TidalSessionManager.cxx
diff options
context:
space:
mode:
authorMax Kellermann <max@musicpd.org>2018-01-25 12:58:58 +0100
committerMax Kellermann <max@musicpd.org>2018-01-25 12:58:58 +0100
commit47fa8c4cf6b4bf742536405fd66a1915d122a64c (patch)
treeeb0118fe630b634ea194f40c5f020f07a58fd301 /src/input/plugins/TidalSessionManager.cxx
parent7640609b410a1babc2973bc33ed8894729b3b6a1 (diff)
input/{tidal,qobus}: add bogus "noexcept"
The CurlRequest constructor can throw exceptions, therefore we must not use "noexcept".
Diffstat (limited to 'src/input/plugins/TidalSessionManager.cxx')
-rw-r--r--src/input/plugins/TidalSessionManager.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/plugins/TidalSessionManager.cxx b/src/input/plugins/TidalSessionManager.cxx
index bfb6f08bc..a5a49c8a8 100644
--- a/src/input/plugins/TidalSessionManager.cxx
+++ b/src/input/plugins/TidalSessionManager.cxx
@@ -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),