From 0729d6acfc997d34b0d70357caabeb2005a2c819 Mon Sep 17 00:00:00 2001 From: David Wells Date: Sat, 15 Oct 2016 12:02:42 -0400 Subject: [PATCH] Comment out some unused function arguments. --- include/deal.II/lac/petsc_parallel_block_vector.h | 4 ++-- include/deal.II/lac/petsc_parallel_vector.h | 4 ++-- include/deal.II/lac/sparse_vanka.h | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/include/deal.II/lac/petsc_parallel_block_vector.h b/include/deal.II/lac/petsc_parallel_block_vector.h index bab1c75e95..03e5940c33 100644 --- a/include/deal.II/lac/petsc_parallel_block_vector.h +++ b/include/deal.II/lac/petsc_parallel_block_vector.h @@ -556,7 +556,7 @@ namespace internal static void reinit_range_vector (const Matrix &matrix, PETScWrappers::MPI::BlockVector &v, - bool omit_zeroing_entries) + bool /*omit_zeroing_entries*/) { v.reinit(matrix.locally_owned_range_indices(), matrix.get_mpi_communicator()); } @@ -565,7 +565,7 @@ namespace internal static void reinit_domain_vector(const Matrix &matrix, PETScWrappers::MPI::BlockVector &v, - bool omit_zeroing_entries) + bool /*omit_zeroing_entries*/) { v.reinit(matrix.locally_owned_domain_indices(), matrix.get_mpi_communicator()); } diff --git a/include/deal.II/lac/petsc_parallel_vector.h b/include/deal.II/lac/petsc_parallel_vector.h index c8ca0e6280..a699e51153 100644 --- a/include/deal.II/lac/petsc_parallel_vector.h +++ b/include/deal.II/lac/petsc_parallel_vector.h @@ -601,7 +601,7 @@ namespace internal static void reinit_range_vector (const Matrix &matrix, PETScWrappers::MPI::Vector &v, - bool omit_zeroing_entries) + bool /*omit_zeroing_entries*/) { v.reinit(matrix.locally_owned_range_indices(), matrix.get_mpi_communicator()); } @@ -610,7 +610,7 @@ namespace internal static void reinit_domain_vector(const Matrix &matrix, PETScWrappers::MPI::Vector &v, - bool omit_zeroing_entries) + bool /*omit_zeroing_entries*/) { v.reinit(matrix.locally_owned_domain_indices(), matrix.get_mpi_communicator()); } diff --git a/include/deal.II/lac/sparse_vanka.h b/include/deal.II/lac/sparse_vanka.h index f20a1bb27c..a36dfea1bf 100644 --- a/include/deal.II/lac/sparse_vanka.h +++ b/include/deal.II/lac/sparse_vanka.h @@ -591,8 +591,8 @@ SparseVanka::n () const template template inline void -SparseVanka::Tvmult (Vector &dst, - const Vector &src) const +SparseVanka::Tvmult (Vector &/*dst*/, + const Vector &/*src*/) const { AssertThrow(false, ExcNotImplemented()); } -- 2.39.5