diff --git a/routing/routing_integration_tests/route_test.cpp b/routing/routing_integration_tests/route_test.cpp index 4abbf68a60..1abf9cb1b4 100644 --- a/routing/routing_integration_tests/route_test.cpp +++ b/routing/routing_integration_tests/route_test.cpp @@ -454,12 +454,12 @@ namespace } // TODO (@gmoryes) uncomment this after many-via restrictions will be in mwms. - /* +/* UNIT_TEST(SpainRestirctionOnlyMany) { integration::CalculateRouteAndTestRouteLength( integration::GetVehicleComponents(VehicleType::Car), - MercatorBounds::FromLatLon(43.38234, -5.67648), {0., 0.}, + MercatorBounds::FromLatLon(43.38234, -5.67648), {0.0, 0.0}, MercatorBounds::FromLatLon(43.38222, -5.69083), 8289.0); } @@ -467,8 +467,8 @@ namespace { integration::CalculateRouteAndTestRouteLength( integration::GetVehicleComponents(VehicleType::Car), - MercatorBounds::FromLatLon(55.991578, 37.212476), {0., 0.}, + MercatorBounds::FromLatLon(55.991578, 37.212476), {0.0, 0.0}, MercatorBounds::FromLatLon(55.991845, 37.215312), 799.0); } - */ +*/ } // namespace diff --git a/routing/single_vehicle_world_graph.cpp b/routing/single_vehicle_world_graph.cpp index dd0ca951d9..b912ba51f8 100644 --- a/routing/single_vehicle_world_graph.cpp +++ b/routing/single_vehicle_world_graph.cpp @@ -322,7 +322,7 @@ SingleVehicleWorldGraph::AreWavesConnectibleImpl(map con } } - NumMwmId mwmId = GetCommonMwmInChain(chain); + NumMwmId const mwmId = GetCommonMwmInChain(chain); if (mwmId == kFakeNumMwmId) return true;