0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-10-01 05:08:59 +02: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();
s = std::move(other.s);
other.s = nullptr;
return *this;
}