mirror of
https://git.zaroz.cloud/nintendo-back-up/yuzu/yuzu-mainline.git
synced 2025-12-16 12:32:41 +00:00
Common: Remove Common::make_unique, use std::make_unique
This commit is contained in:
@@ -4,7 +4,6 @@
|
||||
|
||||
#include <memory>
|
||||
|
||||
#include "common/make_unique.h"
|
||||
#include "common/logging/log.h"
|
||||
|
||||
#include "core/core.h"
|
||||
@@ -74,8 +73,8 @@ void Stop() {
|
||||
|
||||
/// Initialize the core
|
||||
void Init() {
|
||||
g_sys_core = Common::make_unique<ARM_DynCom>(USER32MODE);
|
||||
g_app_core = Common::make_unique<ARM_DynCom>(USER32MODE);
|
||||
g_sys_core = std::make_unique<ARM_DynCom>(USER32MODE);
|
||||
g_app_core = std::make_unique<ARM_DynCom>(USER32MODE);
|
||||
|
||||
LOG_DEBUG(Core, "Initialized OK");
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user