Reordering members in struct to actually exploit four byte padding,

partially fixes #563
This commit is contained in:
DennisOSRM
2013-01-11 18:36:00 +01:00
parent 8158e7f1c5
commit 7449f81ed4
2 changed files with 210 additions and 2 deletions
+1 -1
View File
@@ -41,8 +41,8 @@ struct QueryEdge {
NodeID target;
struct EdgeData {
NodeID id:31;
int distance:30;
bool shortcut:1;
int distance:30;
bool forward:1;
bool backward:1;
} data;