From: David Wells Date: Sat, 15 Oct 2016 16:02:42 +0000 (-0400) Subject: Comment out some unused function arguments. X-Git-Tag: v8.5.0-rc1~563^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0729d6acfc997d34b0d70357caabeb2005a2c819;p=dealii.git Comment out some unused function arguments. --- 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()); }