From 247dee096637414b63185341db3e7035122d7f3b Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Wed, 16 Mar 2011 19:43:26 +0000 Subject: [PATCH] removing stalled node attribute --- DataStructures/SearchEngine.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/DataStructures/SearchEngine.h b/DataStructures/SearchEngine.h index c3297eda6..27a591a4e 100644 --- a/DataStructures/SearchEngine.h +++ b/DataStructures/SearchEngine.h @@ -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 {