mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-10 03:58:09 -05: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