From: Wolfgang Bangerth Date: Tue, 2 Mar 2021 02:48:12 +0000 (+0100) Subject: Mark ignored arguments as such. X-Git-Tag: v9.3.0-rc1~295^2~5 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=555a27dd9e4159a03e754a5ce92fc9cc0d0fb368;p=dealii.git Mark ignored arguments as such. --- 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)