Merge pull request #902 from PCSX2/convert-auto_ptr-unique_ptr

pcsx2: auto_ptr is deprecated in favor of auto_ptr
This commit is contained in:
Gregory Hainaut 2015-10-19 15:37:35 +02:00
commit 5f78644bb6
1 changed files with 1 additions and 1 deletions

View File

@ -222,7 +222,7 @@ int LoadCheatsFromZip(wxString gameCRC, const wxString& cheatsArchiveFilename) {
int before = cheatnumber;
std::auto_ptr<wxZipEntry> entry;
std::unique_ptr<wxZipEntry> entry;
wxFFileInputStream in(cheatsArchiveFilename);
wxZipInputStream zip(in);
while (entry.reset(zip.GetNextEntry()), entry.get() != NULL)