From 93aafc3c7b35e50d72f737f7811bbb49487ff115 Mon Sep 17 00:00:00 2001 From: Siarhei Fedartsou Date: Thu, 30 Jun 2022 11:01:47 +0200 Subject: [PATCH] Enable more clang-tidy checks --- unit_tests/partitioner/graph_generator.hpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/unit_tests/partitioner/graph_generator.hpp b/unit_tests/partitioner/graph_generator.hpp index 08c4589b2..d5e37715a 100644 --- a/unit_tests/partitioner/graph_generator.hpp +++ b/unit_tests/partitioner/graph_generator.hpp @@ -17,7 +17,8 @@ struct EdgeWithSomeAdditionalData inline Coordinate makeCoordinate(int x, int y, double step_size, double offset_x = 0, double offset_y = 0) { - return {osrm::util::FloatLongitude{offset_x + x * step_size}, osrm::util::FloatLatitude{offset_y + y * step_size}}; + return {osrm::util::FloatLongitude{offset_x + x * step_size}, + osrm::util::FloatLatitude{offset_y + y * step_size}}; } std::vector inline makeGridCoordinates(