From a0c69736c102a1630b9aee78d9dc54f008250620 Mon Sep 17 00:00:00 2001 From: Daniel Arndt Date: Sat, 6 Feb 2021 15:43:41 -0500 Subject: [PATCH] Use MPI_COMM_SELF --- include/deal.II/sundials/n_vector.templates.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/deal.II/sundials/n_vector.templates.h b/include/deal.II/sundials/n_vector.templates.h index e7b50b5dae..55e08e77d0 100644 --- a/include/deal.II/sundials/n_vector.templates.h +++ b/include/deal.II/sundials/n_vector.templates.h @@ -492,7 +492,7 @@ template ::value, int>> MPI_Comm SUNDIALS::internal::NVectorOperations::get_communicator(N_Vector) { - return {}; + return MPI_COMM_SELF; } -- 2.39.5