Skip to content
Snippets Groups Projects
Commit 66c22f0f authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

Fix warnings

parent ade3d9ad
No related branches found
No related tags found
1 merge request!11Feature/mpi
...@@ -173,7 +173,7 @@ class MeshDispatcher ...@@ -173,7 +173,7 @@ class MeshDispatcher
cell_list_to_send_by_proc[i] = convert_to_array(cell_vector_to_send_by_proc[i]); cell_list_to_send_by_proc[i] = convert_to_array(cell_vector_to_send_by_proc[i]);
} }
return std::move(cell_list_to_send_by_proc); return cell_list_to_send_by_proc;
} }
Array<int> _buildNbCellToSend() Array<int> _buildNbCellToSend()
...@@ -208,7 +208,7 @@ class MeshDispatcher ...@@ -208,7 +208,7 @@ class MeshDispatcher
} }
::exchange(cell_value_to_send_by_proc, recv_cell_value_by_proc); ::exchange(cell_value_to_send_by_proc, recv_cell_value_by_proc);
return std::move(recv_cell_value_by_proc); return recv_cell_value_by_proc;
} }
[[deprecated]] [[deprecated]]
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment