80 cols
This commit is contained in:
parent
53bed5e59a
commit
64ac7d0537
1 changed files with 3 additions and 2 deletions
|
@ -63,8 +63,9 @@ void Timer::dispatchTimers(bool wait)
|
||||||
|
|
||||||
while (!_q.empty()) {
|
while (!_q.empty()) {
|
||||||
curr = _q.top();
|
curr = _q.top();
|
||||||
/* since we overload the destructor to keep from removing from the middle of
|
/* since we overload the destructor to keep from removing from the middle
|
||||||
the priority queue, set _del_me, we have to do our real delete in here.
|
of the priority queue, set _del_me, we have to do our real delete in
|
||||||
|
here.
|
||||||
*/
|
*/
|
||||||
if (curr->_del_me) {
|
if (curr->_del_me) {
|
||||||
_q.pop();
|
_q.pop();
|
||||||
|
|
Loading…
Reference in a new issue