This commit is contained in:
Jordan Woyak 2013-02-20 17:35:01 -06:00
parent f3e91bc10d
commit e9232280c4

View File

@ -783,7 +783,7 @@ IOFile::IOFile(IOFile&& other)
IOFile& IOFile::operator=(IOFile&& other)
{
IOFile(std::move(other)).Swap(*this);
IOFile((IOFile&&)other).Swap(*this);
return *this;
}