From deb77892991604f463adfe7beb85ae9312df2fcf Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 24 Mar 2016 15:07:56 -0500 Subject: [PATCH] Avoid warnings about unused function arguments. --- include/deal.II/lac/read_write_vector.templates.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/deal.II/lac/read_write_vector.templates.h b/include/deal.II/lac/read_write_vector.templates.h index 7fb27e1548..28ce43d8d6 100644 --- a/include/deal.II/lac/read_write_vector.templates.h +++ b/include/deal.II/lac/read_write_vector.templates.h @@ -150,8 +150,8 @@ namespace LinearAlgebra template void ReadWriteVector::import(const PETScWrappers::MPI::Vector &petsc_vec, - VectorOperation::values operation, - std_cxx11::shared_ptr communication_pattern) + VectorOperation::values /*operation*/, + std_cxx11::shared_ptr /*communication_pattern*/) { //TODO: this works only if no communication is needed. Assert(petsc_vec.locally_owned_elements() == stored_elements, -- 2.39.5