mirror of
https://github.com/PabloMK7/citra.git
synced 2025-08-11 14:16:50 +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
src/core/hle/service
|
@ -197,7 +197,7 @@ static bool AttemptLLE(const ServiceModuleInfo& service_module) {
|
|||
service_module.name);
|
||||
return false;
|
||||
}
|
||||
Kernel::SharedPtr<Kernel::Process> process;
|
||||
std::shared_ptr<Kernel::Process> process;
|
||||
loader->Load(process);
|
||||
LOG_DEBUG(Service, "Service module \"{}\" has been successfully loaded.", service_module.name);
|
||||
return true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue