File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -176,7 +176,8 @@ void run_scheduled_recurrent_functions()
176
176
done = current == stop;
177
177
const bool wakeupToken = current->wakeupToken && current->wakeupToken ->load ();
178
178
const bool wakeup = current->wakeupTokenCmp != wakeupToken;
179
- if (wakeup) current->wakeupTokenCmp = wakeupToken;
179
+ if (wakeup)
180
+ current->wakeupTokenCmp = wakeupToken;
180
181
bool callNow = current->callNow ;
181
182
182
183
if ((wakeup || callNow) && !current->mFunc ())
@@ -187,7 +188,8 @@ void run_scheduled_recurrent_functions()
187
188
auto to_ditch = current;
188
189
189
190
// removing rLast
190
- if (rLast == current) rLast = prev;
191
+ if (rLast == current)
192
+ rLast = prev;
191
193
192
194
current = current->mNext ;
193
195
prev->mNext = current;
You can’t perform that action at this time.
0 commit comments