From 555a27dd9e4159a03e754a5ce92fc9cc0d0fb368 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 2 Mar 2021 03:48:12 +0100 Subject: [PATCH] Mark ignored arguments as such. --- source/sundials/sunlinsol_wrapper.cc | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/source/sundials/sunlinsol_wrapper.cc b/source/sundials/sunlinsol_wrapper.cc index 9c6010d0b1..d0fed62579 100644 --- a/source/sundials/sunlinsol_wrapper.cc +++ b/source/sundials/sunlinsol_wrapper.cc @@ -103,7 +103,7 @@ namespace SUNDIALS template int arkode_linsol_solve(SUNLinearSolver LS, - SUNMatrix, + SUNMatrix /*ignored*/, N_Vector x, N_Vector b, realtype tol) @@ -125,7 +125,7 @@ namespace SUNDIALS template int - arkode_linsol_setup(SUNLinearSolver LS, SUNMatrix) + arkode_linsol_setup(SUNLinearSolver LS, SUNMatrix /*ignored*/) { auto content = access_content(LS); if (content->preconditioner_setup) @@ -172,6 +172,8 @@ namespace SUNDIALS } } // namespace + + template internal::LinearSolverWrapper::LinearSolverWrapper( LinearSolveFunction lsolve) -- 2.39.5