remove useless parantheses
This commit is contained in:
parent
97ed6a3a4e
commit
3327c32b20
@ -267,7 +267,7 @@ osrm::tribool RequestParser::consume(request ¤t_request, const char input)
|
||||
}
|
||||
return osrm::tribool::no;
|
||||
default: // expecting_newline_3
|
||||
return (input == '\n' ? osrm::tribool::yes : osrm::tribool::no);
|
||||
return input == '\n' ? osrm::tribool::yes : osrm::tribool::no;
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user