lib/upnp: add "noexcept"

This commit is contained in:
Max Kellermann
2017-11-12 18:26:32 +01:00
parent fb01e41e8a
commit 4b2bb88375
18 changed files with 41 additions and 41 deletions

View File

@@ -41,7 +41,7 @@ class CurlSlist {
struct curl_slist *head = nullptr;
public:
CurlSlist() noexcept = default;
CurlSlist() = default;
CurlSlist(CurlSlist &&src) noexcept
:head(std::exchange(src.head, nullptr)) {}