Skip to content

Commit 0548901

Browse files
[minor] removed 2 warnings
1 parent c6cb9c8 commit 0548901

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

external/project_utils

std_e/execution/test/base_task.mpi.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ TEST_CASE("then_comm") {
118118
auto s0 = input_data(tg,std::vector{3,0,1,2}) | then(sort_vec);
119119
auto s1 = s0 | then_comm(get_remote_info);
120120
auto s2 = s0 | then(reverse_vec_with_delay);
121-
auto s3 = join(std::move(s1),std::move(s2)) | then(concatenate_vec);
121+
/*auto s3 = */join(std::move(s1),std::move(s2)) | then(concatenate_vec);
122122

123123
CHECK( tg.size() == 5 );
124124

std_e/parallel/mpi/point_to_point/test/point_to_point.mpi.test.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ MPI_TEST_CASE("send recv async overlap",2) {
111111
future s0 = input_data(tg,std::move(x));
112112
future s1 = s0 | then_comm2(send_recv_msg_0,test_comm) | then(reverse_msg);
113113
future s2 = s0 | then_comm2(send_recv_msg_1,test_comm) | then(reverse_msg);
114-
auto s3 = join(std::move(s1),std::move(s2)) | then(concatenate_vec);
114+
/*auto s3 = */join(std::move(s1),std::move(s2)) | then(concatenate_vec);
115115

116116
CHECK( tg.size() == 6 );
117117

0 commit comments

Comments
 (0)