mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 21:58:48 +00:00
DiscIO: Move some raw pointers over to unique_ptr
This commit is contained in:
parent
ea7eee1f58
commit
4cb46879bc
9 changed files with 40 additions and 48 deletions
|
@ -4,6 +4,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
|
@ -41,7 +42,7 @@ public:
|
|||
static StringDecoder GetStringDecoder(ECountry country);
|
||||
|
||||
private:
|
||||
IBlobReader* m_pReader;
|
||||
std::unique_ptr<IBlobReader> m_pReader;
|
||||
};
|
||||
|
||||
} // namespace
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue