removing stalled node attribute
This commit is contained in:
parent
3db44b3ce1
commit
247dee0966
@ -29,9 +29,8 @@ or see http://www.gnu.org/licenses/agpl.txt.
|
|||||||
#include "../typedefs.h"
|
#include "../typedefs.h"
|
||||||
|
|
||||||
struct _HeapData {
|
struct _HeapData {
|
||||||
NodeID parent:31;
|
NodeID parent;
|
||||||
bool stalled:1;
|
_HeapData( NodeID p ) : parent(p) { }
|
||||||
_HeapData( NodeID p ) : parent(p), stalled(false) { }
|
|
||||||
};
|
};
|
||||||
|
|
||||||
struct _PathData {
|
struct _PathData {
|
||||||
|
Loading…
Reference in New Issue
Block a user