From 3637f1c0cffcd3138c6ec430b305341a1e41bc3d Mon Sep 17 00:00:00 2001 From: Jean-Paul Chaput Date: Fri, 26 Mar 2010 18:02:37 +0000 Subject: [PATCH] The DyKeyQueue::pop() method was not returning anything. --- katabatic/src/GCell.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/katabatic/src/GCell.cpp b/katabatic/src/GCell.cpp index 27894994..e6cdd6b5 100644 --- a/katabatic/src/GCell.cpp +++ b/katabatic/src/GCell.cpp @@ -1054,6 +1054,7 @@ namespace Katabatic { std::set::iterator igcell = _map.begin(); GCell* gcell = *igcell; _map.erase ( igcell ); + return gcell; }