@@ -58,16 +58,15 @@ void build_mapping(
5858 auto sort_it = detail::make_zip_iterator (
5959 full_remote_part_ids.begin (), recv_connections_ptr, range_ids.begin ());
6060 std::sort (sort_it, sort_it + input_size, [](const auto & a, const auto & b) {
61- return std::tie (std::get<0 >(a), std::get<1 >(a)) <
62- std::tie (std::get<0 >(b), std::get<1 >(b));
61+ return std::tie (get<0 >(a), get<1 >(a)) < std::tie (get<0 >(b), get<1 >(b));
6362 });
6463
6564 // get only unique connections
66- auto unique_end = std::unique (
67- sort_it, sort_it + input_size, [](const auto & a, const auto & b) {
68- return std::tie (std:: get<0 >(a), std:: get<1 >(a)) ==
69- std::tie (std:: get<0 >(b), std:: get<1 >(b));
70- });
65+ auto unique_end = std::unique (sort_it, sort_it + input_size,
66+ [](const auto & a, const auto & b) {
67+ return std::tie (get<0 >(a), get<1 >(a)) ==
68+ std::tie (get<0 >(b), get<1 >(b));
69+ });
7170 auto unique_size = std::distance (sort_it, unique_end);
7271
7372 remote_global_idxs.resize_and_reset (unique_size);
0 commit comments