mirror of https://github.com/PCSX2/pcsx2.git
pcsx2: auto_ptr is deprecated in favor of unique_ptr
This commit is contained in:
parent
395b4c25f3
commit
c42f46eba4
|
@ -222,7 +222,7 @@ int LoadCheatsFromZip(wxString gameCRC, const wxString& cheatsArchiveFilename) {
|
||||||
|
|
||||||
int before = cheatnumber;
|
int before = cheatnumber;
|
||||||
|
|
||||||
std::auto_ptr<wxZipEntry> entry;
|
std::unique_ptr<wxZipEntry> entry;
|
||||||
wxFFileInputStream in(cheatsArchiveFilename);
|
wxFFileInputStream in(cheatsArchiveFilename);
|
||||||
wxZipInputStream zip(in);
|
wxZipInputStream zip(in);
|
||||||
while (entry.reset(zip.GetNextEntry()), entry.get() != NULL)
|
while (entry.reset(zip.GetNextEntry()), entry.get() != NULL)
|
||||||
|
|
Loading…
Reference in New Issue