diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2013-02-20 17:35:01 -0600 |
|---|---|---|
| committer | Jordan Woyak <jordan.woyak@gmail.com> | 2013-02-20 17:35:41 -0600 |
| commit | e9232280c43174b4349eef8f7abbb551c120ac53 (patch) | |
| tree | c49a74ac8cd4b9599610d32dd11e51aac915d430 /Source/Core/Common/Src/FileUtil.cpp | |
| parent | f3e91bc10de42648f5f8c515b013f22218e14cd4 (diff) | |
Fix OSX!
Diffstat (limited to 'Source/Core/Common/Src/FileUtil.cpp')
| -rw-r--r-- | Source/Core/Common/Src/FileUtil.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/Src/FileUtil.cpp b/Source/Core/Common/Src/FileUtil.cpp index a2bd694438..491db88e41 100644 --- a/Source/Core/Common/Src/FileUtil.cpp +++ b/Source/Core/Common/Src/FileUtil.cpp @@ -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; } |
