mirror of https://github.com/PCSX2/pcsx2.git
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:
commit
5f78644bb6
|
@ -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