0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-11-19 00:10:59 +01:00

ircd::net: Fix scope_timeout move assignment.

This commit is contained in:
Jason Volk 2019-04-16 17:32:09 -07:00
parent af1bd92b26
commit 8cfc9e832e

View file

@ -2390,6 +2390,7 @@ noexcept
{ {
this->~scope_timeout(); this->~scope_timeout();
s = std::move(other.s); s = std::move(other.s);
other.s = nullptr;
return *this; return *this;
} }