add missing semi-colon

This commit is contained in:
Dennis Luxen 2014-05-06 19:49:47 +02:00
parent 8939cef020
commit 821cc3a177

View File

@ -92,7 +92,8 @@ NodeID readBinaryOSRMGraphFromStream(std::istream &input_stream,
// tighten vector sizes // tighten vector sizes
barrier_node_list.shrink_to_fit(); barrier_node_list.shrink_to_fit();
traffic_light_node_list.shrink_to_fit() input_stream.read((char *)&m, sizeof(unsigned)); traffic_light_node_list.shrink_to_fit();
input_stream.read((char *)&m, sizeof(unsigned));
SimpleLogger().Write() << " and " << m << " edges "; SimpleLogger().Write() << " and " << m << " edges ";
for (TurnRestriction &current_restriction : restriction_list) for (TurnRestriction &current_restriction : restriction_list)
{ {