aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/fpu_ctrl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/fpu_ctrl.h b/core/fpu_ctrl.h
index e6dc1fb2..9554313a 100644
--- a/core/fpu_ctrl.h
+++ b/core/fpu_ctrl.h
@@ -8,7 +8,7 @@ class FPUCtl {
bool in_mode{};
public:
- FPUCtl() noexcept { enter(); in_mode = true; };
+ FPUCtl() noexcept { enter(); in_mode = true; }
~FPUCtl() { if(in_mode) leave(); }
FPUCtl(const FPUCtl&) = delete;