From: Wolfgang Bangerth Date: Thu, 24 Mar 2016 20:07:56 +0000 (-0500) Subject: Avoid warnings about unused function arguments. X-Git-Tag: v8.5.0-rc1~1174^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=deb77892991604f463adfe7beb85ae9312df2fcf;p=dealii.git Avoid warnings about unused function arguments. --- 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,