remove some more extra semicolons

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev
2020-03-16 13:37:13 -07:00
parent 6d91b5c7b2
commit 00b9f69c90
4 changed files with 7 additions and 7 deletions

View File

@@ -94,7 +94,7 @@ SetThreadIdlePriority() noexcept
#elif defined(_WIN32)
SetThreadPriority(GetCurrentThread(), THREAD_PRIORITY_IDLE);
#endif
};
}
void
SetThreadRealtime()
@@ -111,4 +111,4 @@ SetThreadRealtime()
if (linux_sched_setscheduler(0, policy, &sched_param) < 0)
throw MakeErrno("sched_setscheduler failed");
#endif // __linux__
};
}