Renamed ImportEdge turn instruction getter function to turnInstruction()

This commit is contained in:
DennisOSRM
2011-11-15 11:35:46 +01:00
parent f7326ca7f1
commit 735b4e2db1
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -106,7 +106,7 @@ public:
NodeID source() const {return _source; }
EdgeWeight weight() const {return _weight; }
NodeID via() const { return _via; }
short turnType() const { assert(_turnInstruction >= 0); return _turnInstruction; }
short turnInstruction() const { assert(_turnInstruction >= 0); return _turnInstruction; }
bool isBackward() const { return backward; }
bool isForward() const { return forward; }