aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJan Niklas Hasse <[email protected]>2022-01-04 21:39:34 +0100
committerGitHub <[email protected]>2022-01-04 12:39:34 -0800
commit3bdbbe8aa84f8c06a220d2ea361033ec7fd06120 (patch)
treee74a50d0da2b00f6052ef6aa765a8cfd177c0d3d
parentfff09a2e5c4c5c0e359003e4c58436b3269b2858 (diff)
Remove extra ';' after member function definition (#634)
Found using -Wextra-semi warning.
-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;