mirror of
https://github.com/PabloMK7/citra.git
synced 2025-09-12 05:40:04 +00:00
Kernel: replace boost::intrusive_ptr with std::shared_ptr
This commit is contained in:
parent
c1de8acfe5
commit
5f11c5f733
96 changed files with 522 additions and 538 deletions
|
@ -151,9 +151,9 @@ protected:
|
|||
|
||||
bool ac_connected = false;
|
||||
|
||||
Kernel::SharedPtr<Kernel::Event> close_event;
|
||||
Kernel::SharedPtr<Kernel::Event> connect_event;
|
||||
Kernel::SharedPtr<Kernel::Event> disconnect_event;
|
||||
std::shared_ptr<Kernel::Event> close_event;
|
||||
std::shared_ptr<Kernel::Event> connect_event;
|
||||
std::shared_ptr<Kernel::Event> disconnect_event;
|
||||
};
|
||||
|
||||
void InstallInterfaces(Core::System& system);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue