The DyKeyQueue::pop() method was not returning anything.

This commit is contained in:
Jean-Paul Chaput 2010-03-26 18:02:37 +00:00
parent 53ba314063
commit 3637f1c0cf
1 changed files with 1 additions and 0 deletions

View File

@ -1054,6 +1054,7 @@ namespace Katabatic {
std::set<GCell*,GCell::CompareByKey>::iterator igcell = _map.begin();
GCell* gcell = *igcell;
_map.erase ( igcell );
return gcell;
}