summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Src/FileUtil.cpp
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2013-02-20 17:35:01 -0600
committerJordan Woyak <jordan.woyak@gmail.com>2013-02-20 17:35:41 -0600
commite9232280c43174b4349eef8f7abbb551c120ac53 (patch)
treec49a74ac8cd4b9599610d32dd11e51aac915d430 /Source/Core/Common/Src/FileUtil.cpp
parentf3e91bc10de42648f5f8c515b013f22218e14cd4 (diff)
Fix OSX!
Diffstat (limited to 'Source/Core/Common/Src/FileUtil.cpp')
-rw-r--r--Source/Core/Common/Src/FileUtil.cpp2
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;
}