From bea63028c788c973aec464a65280002d595ea6f2 Mon Sep 17 00:00:00 2001 From: Emil Tin Date: Fri, 15 Aug 2014 13:05:48 +0200 Subject: [PATCH] remove bitfield from SegmentInformation, works around compile err --- DataStructures/SegmentInformation.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DataStructures/SegmentInformation.h b/DataStructures/SegmentInformation.h index fe1704a92..df3bfbaed 100644 --- a/DataStructures/SegmentInformation.h +++ b/DataStructures/SegmentInformation.h @@ -45,7 +45,7 @@ struct SegmentInformation TurnInstruction turn_instruction; bool necessary:1; bool is_via_location:1; - TravelMode travel_mode : 4; + TravelMode travel_mode; explicit SegmentInformation(const FixedPointCoordinate &location, const NodeID name_id,