Fix invalid return value

master
Vincent Coubard 2015-11-22 21:14:51 +00:00
parent 2437782636
commit 693a563af7
1 changed files with 1 additions and 2 deletions

View File

@ -124,13 +124,12 @@ public:
previous->chainAsNext(current->getNext());
}
delete current;
return true;
return;
}
previous = current;
current = current->getNext();
}
return false;
}
/** Clear the call chain (remove all functions in the chain).