Remove debug ouput from post-processing

This commit is contained in:
Patrick Niklaus 2016-04-30 04:32:26 +02:00
parent e341d367d8
commit 378d9f4112
No known key found for this signature in database
GPG Key ID: E426891B5F978B1B

View File

@ -242,9 +242,6 @@ void closeOffRoundabout(const bool on_roundabout,
return angle > 360 ? angle - 360 : angle;
}(propagation_step.maneuver.bearing_before, exit_bearing);
std::cout << "Step: " << propagation_step.maneuver.bearing_before << " "
<< exit_bearing << " result: " << angle << std::endl;
propagation_step.maneuver.instruction.direction_modifier =
::osrm::util::guidance::getTurnDirection(angle);
}