From f634c332c0ebd861890d806a8efaff5659af1093 Mon Sep 17 00:00:00 2001 From: Peter Munch Date: Tue, 13 Sep 2022 09:58:33 +0200 Subject: [PATCH] Fix unsed warning --- include/deal.II/lac/sparse_matrix_tools.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/deal.II/lac/sparse_matrix_tools.h b/include/deal.II/lac/sparse_matrix_tools.h index be5a7d7372..7250eb51a8 100644 --- a/include/deal.II/lac/sparse_matrix_tools.h +++ b/include/deal.II/lac/sparse_matrix_tools.h @@ -198,6 +198,7 @@ namespace SparseMatrixTools MPI_Comm get_mpi_communicator(const SparseMatrixType &sparse_matrix) { + (void)sparse_matrix; return MPI_COMM_SELF; } -- 2.39.5