Downsizing Struct

This commit is contained in:
DennisOSRM 2012-04-26 13:50:26 +02:00
parent bb98bc92ef
commit 44af60563d

View File

@ -39,8 +39,8 @@ struct QueryEdge {
NodeID source; NodeID source;
NodeID target; NodeID target;
struct EdgeData { struct EdgeData {
NodeID id; NodeID id:31;
int distance; int distance:30;
bool shortcut:1; bool shortcut:1;
bool forward:1; bool forward:1;
bool backward:1; bool backward:1;