[routing] In osrm_router.cpp add {} to C++11's for. MSVC needs them.

Place open bracket on second line after for.
This commit is contained in:
Artyom Polkovnikov 2014-12-02 12:32:31 +03:00 committed by Alex Zolotarev
parent 00bf60ff74
commit 9d3bad838d

View file

@ -643,7 +643,9 @@ OsrmRouter::ResultCode OsrmRouter::CalculateRouteImpl(m2::PointD const & startPt
#ifdef _DEBUG
for (auto t : turnsDir)
{
LOG(LDEBUG, (turns::GetTurnString(t.m_turn), ":", t.m_index, t.m_srcName, "-", t.m_trgName, "exit:", t.m_exitNum));
}
#endif
route.SetGeometry(points.begin(), points.end());