Commit 7fe0095f authored by Max Kellermann's avatar Max Kellermann

util/IntrusiveList: add `noexcept` to defaulted constructor

parent a4b23634
...@@ -125,7 +125,7 @@ class IntrusiveList { ...@@ -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())
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment