diff options
| author | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-08-26 01:19:01 +0000 |
|---|---|---|
| committer | ReinUsesLisp <reinuseslisp@airmail.cc> | 2020-08-26 02:43:26 +0000 |
| commit | 56ac22f7371fdf45016972ce9f487cb3f02551ae (patch) | |
| tree | b57a1bf7a8f3b2cd84671670dbf313708127fbcb /src/core/arm/cpu_interrupt_handler.h | |
| parent | ea7bda25ba99262267acaa179762c83e3e96a232 (diff) | |
cpu_interrupt_handler: Misc style changes
Diffstat (limited to 'src/core/arm/cpu_interrupt_handler.h')
| -rw-r--r-- | src/core/arm/cpu_interrupt_handler.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/arm/cpu_interrupt_handler.h b/src/core/arm/cpu_interrupt_handler.h index 61c22fef9..71e582f79 100644 --- a/src/core/arm/cpu_interrupt_handler.h +++ b/src/core/arm/cpu_interrupt_handler.h @@ -33,8 +33,8 @@ public: void AwaitInterrupt(); private: - std::atomic_bool is_interrupted{false}; std::unique_ptr<Common::Event> interrupt_event; + std::atomic_bool is_interrupted{false}; }; } // namespace Core |
