mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 11:35:54 +00:00
Fix compiler error for win64 (SFileInfo doesn't get used much so a copy won't kill us)
This commit is contained in:
parent
8ee601d32b
commit
e3e290123b
1 changed files with 1 additions and 2 deletions
|
@ -32,8 +32,7 @@ struct SFileInfo
|
|||
m_FileSize(filesize)
|
||||
{ }
|
||||
|
||||
SFileInfo (SFileInfo const&) = delete;
|
||||
SFileInfo (SFileInfo&&) = default;
|
||||
SFileInfo (SFileInfo const&) = default;
|
||||
SFileInfo () = default;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue