Browse Source
Merge pull request #4909 from lioncash/interrupt
cpu_interrupt_handler: Mark move contructor/assignment as deleted
pull/15/merge
Rodrigo Locatti
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
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; |
|
|
|
|