Removed unused structure and fixed "multi-line comment" warning
This commit is contained in:
parent
dc81f581a0
commit
7dea7476f1
@ -340,7 +340,7 @@ double findTotalTurnAngle(const RouteStep &entry_step, const RouteStep &exit_ste
|
|||||||
// both angles are in the same direction, the total turn gets increased
|
// both angles are in the same direction, the total turn gets increased
|
||||||
//
|
//
|
||||||
// a ---- b
|
// a ---- b
|
||||||
// \
|
// \
|
||||||
// c
|
// c
|
||||||
// |
|
// |
|
||||||
// d
|
// d
|
||||||
|
@ -11,19 +11,6 @@ namespace extractor
|
|||||||
namespace guidance
|
namespace guidance
|
||||||
{
|
{
|
||||||
|
|
||||||
struct TurnPossibility
|
|
||||||
{
|
|
||||||
TurnPossibility(bool entry_allowed, double bearing)
|
|
||||||
: entry_allowed(entry_allowed), bearing(std::move(bearing))
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
TurnPossibility() : entry_allowed(false), bearing(0) {}
|
|
||||||
|
|
||||||
bool entry_allowed;
|
|
||||||
double bearing;
|
|
||||||
};
|
|
||||||
|
|
||||||
std::pair<util::guidance::EntryClass, util::guidance::BearingClass>
|
std::pair<util::guidance::EntryClass, util::guidance::BearingClass>
|
||||||
classifyIntersection(Intersection intersection)
|
classifyIntersection(Intersection intersection)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user