summaryrefslogtreecommitdiffstats
path: root/src/core/core_cpu.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-09-25 22:04:53 +0200
committerLioncash <mathew1800@gmail.com>2018-09-25 22:04:56 +0200
commit598e4d2f6ccfc3dc774a28be53d8b1d78ebbd08d (patch)
tree1d43801463284752d6ecec43c9a1e7850caef607 /src/core/core_cpu.h
parentkernel/scheduler: Take ARM_Interface instance by reference in the constructor (diff)
downloadyuzu-598e4d2f6ccfc3dc774a28be53d8b1d78ebbd08d.tar
yuzu-598e4d2f6ccfc3dc774a28be53d8b1d78ebbd08d.tar.gz
yuzu-598e4d2f6ccfc3dc774a28be53d8b1d78ebbd08d.tar.bz2
yuzu-598e4d2f6ccfc3dc774a28be53d8b1d78ebbd08d.tar.lz
yuzu-598e4d2f6ccfc3dc774a28be53d8b1d78ebbd08d.tar.xz
yuzu-598e4d2f6ccfc3dc774a28be53d8b1d78ebbd08d.tar.zst
yuzu-598e4d2f6ccfc3dc774a28be53d8b1d78ebbd08d.zip
Diffstat (limited to '')
-rw-r--r--src/core/core_cpu.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/core_cpu.h b/src/core/core_cpu.h
index 685532965..ee7e04abc 100644
--- a/src/core/core_cpu.h
+++ b/src/core/core_cpu.h
@@ -76,7 +76,7 @@ public:
private:
void Reschedule();
- std::shared_ptr<ARM_Interface> arm_interface;
+ std::unique_ptr<ARM_Interface> arm_interface;
std::shared_ptr<CpuBarrier> cpu_barrier;
std::shared_ptr<Kernel::Scheduler> scheduler;