summaryrefslogtreecommitdiffstats
path: root/src/core/arm/cpu_interrupt_handler.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-11-08 21:37:02 +0100
committerLioncash <mathew1800@gmail.com>2020-11-08 21:37:04 +0100
commit0aad9145279d1784e44a4a8250988c1546df4599 (patch)
tree17e66ddf2bebea6e8174fce202d7eef2ffa94e0b /src/core/arm/cpu_interrupt_handler.h
parentMerge pull request #4903 from bunnei/remove-gpu-integrity (diff)
downloadyuzu-0aad9145279d1784e44a4a8250988c1546df4599.tar
yuzu-0aad9145279d1784e44a4a8250988c1546df4599.tar.gz
yuzu-0aad9145279d1784e44a4a8250988c1546df4599.tar.bz2
yuzu-0aad9145279d1784e44a4a8250988c1546df4599.tar.lz
yuzu-0aad9145279d1784e44a4a8250988c1546df4599.tar.xz
yuzu-0aad9145279d1784e44a4a8250988c1546df4599.tar.zst
yuzu-0aad9145279d1784e44a4a8250988c1546df4599.zip
Diffstat (limited to '')
-rw-r--r--src/core/arm/cpu_interrupt_handler.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/arm/cpu_interrupt_handler.h b/src/core/arm/cpu_interrupt_handler.h
index 71e582f79..c20c280f1 100644
--- a/src/core/arm/cpu_interrupt_handler.h
+++ b/src/core/arm/cpu_interrupt_handler.h
@@ -21,8 +21,8 @@ public:
CPUInterruptHandler(const CPUInterruptHandler&) = delete;
CPUInterruptHandler& operator=(const CPUInterruptHandler&) = delete;
- CPUInterruptHandler(CPUInterruptHandler&&) = default;
- CPUInterruptHandler& operator=(CPUInterruptHandler&&) = default;
+ CPUInterruptHandler(CPUInterruptHandler&&) = delete;
+ CPUInterruptHandler& operator=(CPUInterruptHandler&&) = delete;
bool IsInterrupted() const {
return is_interrupted;