From dbe70ffc8a73ff69adf7e6659a98e95ecaf888f6 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Wed, 8 Jan 2014 17:11:31 +0100 Subject: [PATCH] save 4 bytes per internal edge --- Extractor/ExtractorStructs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Extractor/ExtractorStructs.h b/Extractor/ExtractorStructs.h index 6ea0a915c..1e04ed68e 100644 --- a/Extractor/ExtractorStructs.h +++ b/Extractor/ExtractorStructs.h @@ -71,13 +71,13 @@ struct ExtractionWay { enum Directions { notSure = 0, oneway, bidirectional, opposite }; - Directions direction; unsigned id; unsigned nameID; - std::string name; double speed; double backward_speed; double duration; + Directions direction; + std::string name; short type; bool access; bool roundabout;