mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 13:20:27 -06:00
Hopefully kill a stupid warning on Windows.
This commit is contained in:
@ -781,9 +781,9 @@ IOFile::IOFile(IOFile&& other)
|
||||
Swap(other);
|
||||
}
|
||||
|
||||
IOFile& IOFile::operator=(IOFile other)
|
||||
IOFile& IOFile::operator=(IOFile&& other)
|
||||
{
|
||||
Swap(other);
|
||||
IOFile(std::move(other)).Swap(*this);
|
||||
return *this;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user