diff options
| author | Tres Walsh <tres.walsh@mnmlstc.com> | 2015-01-11 15:59:50 -0800 |
|---|---|---|
| committer | Tres Walsh <tres.walsh@mnmlstc.com> | 2015-01-11 15:59:50 -0800 |
| commit | e3e290123bfa59c7d7bc0b64b2ef2e9024781f02 (patch) | |
| tree | 5e118c1ddb43c420315e10bc190428db8e50474c /Source | |
| parent | 8ee601d32b3115c53648d0bc7872f209e4e5df4f (diff) | |
Fix compiler error for win64 (SFileInfo doesn't get used much so a copy won't kill us)
Diffstat (limited to 'Source')
| -rw-r--r-- | Source/Core/DiscIO/Filesystem.h | 3 |
1 files changed, 1 insertions, 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; }; |
