Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix OSX!
  • Loading branch information
jordan-woyak committed Feb 20, 2013
1 parent f3e91bc commit e923228
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Common/Src/FileUtil.cpp
Expand Up @@ -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;
}

Expand Down

0 comments on commit e923228

Please sign in to comment.