Codechange: Ensure function opening { is on new line.

This commit is contained in:
Peter Nelson
2023-11-09 19:20:41 +00:00
committed by Peter Nelson
parent 1de1af08b9
commit d4008850e3
22 changed files with 64 additions and 32 deletions

View File

@@ -38,7 +38,8 @@ public:
*
* @param timer The timer to register.
*/
static void RegisterTimer(BaseTimer<TTimerType> &timer) {
static void RegisterTimer(BaseTimer<TTimerType> &timer)
{
#ifdef WITH_ASSERT
Validate(timer.period);
#endif /* WITH_ASSERT */
@@ -50,7 +51,8 @@ public:
*
* @param timer The timer to unregister.
*/
static void UnregisterTimer(BaseTimer<TTimerType> &timer) {
static void UnregisterTimer(BaseTimer<TTimerType> &timer)
{
GetTimers().erase(&timer);
}
@@ -87,14 +89,16 @@ private:
* same, it will sort based on the pointer value.
*/
struct base_timer_sorter {
bool operator() (BaseTimer<TTimerType> *a, BaseTimer<TTimerType> *b) const {
bool operator() (BaseTimer<TTimerType> *a, BaseTimer<TTimerType> *b) const
{
if (a->period == b->period) return a < b;
return a->period < b->period;
}
};
/** Singleton list, to store all the active timers. */
static std::set<BaseTimer<TTimerType> *, base_timer_sorter> &GetTimers() {
static std::set<BaseTimer<TTimerType> *, base_timer_sorter> &GetTimers()
{
static std::set<BaseTimer<TTimerType> *, base_timer_sorter> timers;
return timers;
}