From e3e290123bfa59c7d7bc0b64b2ef2e9024781f02 Mon Sep 17 00:00:00 2001 From: Tres Walsh Date: Sun, 11 Jan 2015 15:59:50 -0800 Subject: [PATCH] Fix compiler error for win64 (SFileInfo doesn't get used much so a copy won't kill us) --- Source/Core/DiscIO/Filesystem.h | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/Core/DiscIO/Filesystem.h b/Source/Core/DiscIO/Filesystem.h index 72eacac821..78f179d6dd 100644 --- a/Source/Core/DiscIO/Filesystem.h +++ b/Source/Core/DiscIO/Filesystem.h @@ -32,8 +32,7 @@ struct SFileInfo m_FileSize(filesize) { } - SFileInfo (SFileInfo const&) = delete; - SFileInfo (SFileInfo&&) = default; + SFileInfo (SFileInfo const&) = default; SFileInfo () = default; };