From: Patrick Esser Date: Mon, 1 Feb 2016 19:42:22 +0000 (+0100) Subject: avoid warning about unused variable X-Git-Tag: v8.4.0-rc2~42^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=85d681a9d2d7e5e87536e7ad092aaf1bef7b543d;p=dealii.git avoid warning about unused variable According to the documentation of ArpackSolver::solve the first parameter is unused. Do not give it a name in the definition to avoid unused variable warnings. --- diff --git a/include/deal.II/lac/arpack_solver.h b/include/deal.II/lac/arpack_solver.h index 5417d7d2d7..63751a8250 100644 --- a/include/deal.II/lac/arpack_solver.h +++ b/include/deal.II/lac/arpack_solver.h @@ -260,7 +260,7 @@ ArpackSolver::ArpackSolver (SolverControl &control, template inline -void ArpackSolver::solve (const MatrixType1 &system_matrix, +void ArpackSolver::solve (const MatrixType1 &/*system_matrix*/, const MatrixType2 &mass_matrix, const INVERSE &inverse, std::vector > &eigenvalues,