remove debug output

This commit is contained in:
Moritz Kobitzsch
2017-08-02 12:45:34 +02:00
committed by Daniel Patterson
parent 8ec3c83d82
commit 5dc31252ef
-1
View File
@@ -87,7 +87,6 @@ inline bool hasValidLanes(const guidance::IntermediateIntersection &intersection
std::string instructionTypeToString(const TurnType::Enum type) std::string instructionTypeToString(const TurnType::Enum type)
{ {
std::cout << "Type: " << (int)type << std::endl;
static_assert(sizeof(turn_type_names) / sizeof(turn_type_names[0]) >= TurnType::MaxTurnType, static_assert(sizeof(turn_type_names) / sizeof(turn_type_names[0]) >= TurnType::MaxTurnType,
"Some turn types doesn't have a string representation."); "Some turn types doesn't have a string representation.");
return turn_type_names[static_cast<std::size_t>(type)]; return turn_type_names[static_cast<std::size_t>(type)];