util/IntrusiveList: add noexcept to defaulted constructor

This commit is contained in:
Max Kellermann 2021-02-11 21:22:14 +01:00
parent a4b236348f
commit 7fe0095fa7

View File

@ -125,7 +125,7 @@ class IntrusiveList {
} }
public: public:
IntrusiveList() = default; IntrusiveList() noexcept = default;
IntrusiveList(IntrusiveList &&src) noexcept { IntrusiveList(IntrusiveList &&src) noexcept {
if (src.empty()) if (src.empty())