Reduce CPU hit in FGTaxiSegment::unblock
size() is O(N), empty() is constant time.
This commit is contained in:
parent
95be7220a2
commit
35c5be004f
1 changed files with 5 additions and 7 deletions
|
@ -121,16 +121,14 @@ bool FGTaxiSegment::hasBlock(time_t now)
|
||||||
|
|
||||||
void FGTaxiSegment::unblock(time_t now)
|
void FGTaxiSegment::unblock(time_t now)
|
||||||
{
|
{
|
||||||
if (blockTimes.size()) {
|
if (blockTimes.empty())
|
||||||
BlockListIterator i = blockTimes.begin();
|
return;
|
||||||
if (i->getTimeStamp() < (now - 30)) {
|
|
||||||
blockTimes.erase(i);
|
if (blockTimes.front().getTimeStamp() < (now - 30)) {
|
||||||
}
|
blockTimes.erase(blockTimes.begin());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/***************************************************************************
|
/***************************************************************************
|
||||||
* FGTaxiRoute
|
* FGTaxiRoute
|
||||||
**************************************************************************/
|
**************************************************************************/
|
||||||
|
|
Loading…
Reference in a new issue