removing stalled node attribute

This commit is contained in:
Dennis Luxen 2011-03-16 19:43:26 +00:00
parent 3db44b3ce1
commit 247dee0966

View File

@ -29,9 +29,8 @@ or see http://www.gnu.org/licenses/agpl.txt.
#include "../typedefs.h"
struct _HeapData {
NodeID parent:31;
bool stalled:1;
_HeapData( NodeID p ) : parent(p), stalled(false) { }
NodeID parent;
_HeapData( NodeID p ) : parent(p) { }
};
struct _PathData {