From 85d681a9d2d7e5e87536e7ad092aaf1bef7b543d Mon Sep 17 00:00:00 2001 From: Patrick Esser Date: Mon, 1 Feb 2016 20:42:22 +0100 Subject: [PATCH] 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. --- include/deal.II/lac/arpack_solver.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.39.5