From ef66c0ae72435fa80ab7b2b64552646b38988195 Mon Sep 17 00:00:00 2001 From: Siarhei Fedartsou Date: Sat, 9 Jul 2022 21:54:58 +0200 Subject: [PATCH] Migrate to C++17. Update sol2 to 3.3.0. --- unit_tests/partitioner/bisection_graph_view.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unit_tests/partitioner/bisection_graph_view.cpp b/unit_tests/partitioner/bisection_graph_view.cpp index b420f0175..b98ac9fae 100644 --- a/unit_tests/partitioner/bisection_graph_view.cpp +++ b/unit_tests/partitioner/bisection_graph_view.cpp @@ -16,7 +16,7 @@ using namespace osrm::util; BOOST_AUTO_TEST_SUITE(graph_view) -static void shuffle(std::vector& grid_edges) +static void shuffle(std::vector &grid_edges) { std::random_device rd; std::mt19937 rng(rd());