Remove extra ';' after member function definition (#634)

Found using -Wextra-semi warning.
master
Jan Niklas Hasse 2022-01-04 21:39:34 +01:00 committed by GitHub
parent fff09a2e5c
commit 3bdbbe8aa8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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;