Fix build

This commit is contained in:
Alexey Milovidov 2021-07-28 11:12:11 +03:00
parent ae853b837b
commit d52a0cfcec

View File

@ -59,7 +59,7 @@ AIOContext::AIOContext(AIOContext && rhs)
*this = std::move(rhs);
}
AIOContext::AIOContext & operator=(AIOContext && rhs)
AIOContext::AIOContext & AIOContext::operator=(AIOContext && rhs)
{
std::swap(ctx, rhs.ctx);
}