diff options
author | Lioncash <mathew1800@gmail.com> | 2022-02-02 18:59:36 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2022-02-02 19:17:12 +0100 |
commit | f785f73e9279dcb9cfdee93da694d7a1f55142ea (patch) | |
tree | 52edfca975d8df963ef38987ea1e99b7fb6f5553 /src/core/arm | |
parent | general: Move deleted copy/move constructor/assignment operators to public interface (diff) | |
download | yuzu-f785f73e9279dcb9cfdee93da694d7a1f55142ea.tar yuzu-f785f73e9279dcb9cfdee93da694d7a1f55142ea.tar.gz yuzu-f785f73e9279dcb9cfdee93da694d7a1f55142ea.tar.bz2 yuzu-f785f73e9279dcb9cfdee93da694d7a1f55142ea.tar.lz yuzu-f785f73e9279dcb9cfdee93da694d7a1f55142ea.tar.xz yuzu-f785f73e9279dcb9cfdee93da694d7a1f55142ea.tar.zst yuzu-f785f73e9279dcb9cfdee93da694d7a1f55142ea.zip |
Diffstat (limited to 'src/core/arm')
-rw-r--r-- | src/core/arm/arm_interface.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/core/arm/arm_interface.h b/src/core/arm/arm_interface.h index 689e3ceb5..c60322442 100644 --- a/src/core/arm/arm_interface.h +++ b/src/core/arm/arm_interface.h @@ -6,6 +6,7 @@ #include <array> #include <vector> +#include "common/common_funcs.h" #include "common/common_types.h" #include "core/hardware_properties.h" @@ -24,8 +25,11 @@ class CPUInterruptHandler; using CPUInterrupts = std::array<CPUInterruptHandler, Core::Hardware::NUM_CPU_CORES>; /// Generic ARMv8 CPU interface -class ARM_Interface : NonCopyable { +class ARM_Interface { public: + YUZU_NON_COPYABLE(ARM_Interface); + YUZU_NON_MOVEABLE(ARM_Interface); + explicit ARM_Interface(System& system_, CPUInterrupts& interrupt_handlers_, bool uses_wall_clock_) : system{system_}, interrupt_handlers{interrupt_handlers_}, uses_wall_clock{ |