From: David Wells Date: Thu, 27 May 2021 14:30:34 +0000 (-0400) Subject: Remove an unused variable in a test. X-Git-Tag: v9.4.0-rc1~1326^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=33eab63af23c614b2a4e1bac22d064d2e65794e4;p=dealii.git Remove an unused variable in a test. --- diff --git a/tests/petsc/64.cc b/tests/petsc/64.cc index 27ee8f4cac..1aa7189afb 100644 --- a/tests/petsc/64.cc +++ b/tests/petsc/64.cc @@ -69,7 +69,6 @@ main(int argc, char **argv) MPI_Comm_size(mpi_communicator, &n_jobs); const unsigned int n_mpi_processes = static_cast(n_jobs); Assert(n_dofs % n_mpi_processes == 0, ExcInternalError()); - const unsigned int n_local_dofs = n_dofs / n_mpi_processes; PETScWrappers::MPI::SparseMatrix v2; { FDMatrix fd_matrix(N, N);