From 4a52dd1c5be5e1993aa2c0de422e3c2bdc8642ec Mon Sep 17 00:00:00 2001 From: DennisOSRM Date: Fri, 18 Jan 2013 19:33:51 +0100 Subject: [PATCH] Fixing constant --- DataStructures/TurnInstructions.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/DataStructures/TurnInstructions.h b/DataStructures/TurnInstructions.h index 66188f923..3284d9bbe 100644 --- a/DataStructures/TurnInstructions.h +++ b/DataStructures/TurnInstructions.h @@ -44,7 +44,8 @@ struct TurnInstructionsClass : boost::noncopyable { const static TurnInstruction StayOnRoundAbout = 13; const static TurnInstruction StartAtEndOfStreet = 14; const static TurnInstruction ReachedYourDestination = 15; - const static TurnInstruction GoAgainstAllowedDirection = 32; + const static TurnInstruction EnterAgainstAllowedDirection = 16; + const static TurnInstruction LeaveAgainstAllowedDirection = 17; const static TurnInstruction AccessRestrictionFlag = 128; const static TurnInstruction InverseAccessRestrictionFlag = 0x7f; // ~128 does not work without a warning.