changeset 22914:b7ffd93b8d06

* __ode15__.cc: Avoid unused parameter warnings.
author John W. Eaton <jwe@octave.org>
date Fri, 16 Dec 2016 11:52:59 -0500
parents 69342e4f0dcf
children 7766e3ef6c69
files libinterp/dldfcn/__ode15__.cc
diffstat 1 files changed, 5 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/dldfcn/__ode15__.cc	Fri Dec 16 11:50:52 2016 -0500
+++ b/libinterp/dldfcn/__ode15__.cc	Fri Dec 16 11:52:59 2016 -0500
@@ -177,10 +177,9 @@
                  N_Vector& yyp, N_Vector& rr);
 
     static int
-    jacdense (long int Neq, realtype t,  realtype cj,
-              N_Vector yy, N_Vector yyp, N_Vector resvec,
-              DlsMat JJ, void *user_data, N_Vector tempv1,
-              N_Vector tempv2, N_Vector tempv3)
+    jacdense (long int Neq, realtype t,  realtype cj, N_Vector yy,
+              N_Vector yyp, N_Vector, DlsMat JJ, void *user_data,
+              N_Vector, N_Vector, N_Vector)
     {
       IDA *self =
         static_cast <IDA *> (user_data);
@@ -195,8 +194,8 @@
 
     static int
     jacsparse (realtype t, realtype cj, N_Vector yy, N_Vector yyp,
-               N_Vector r, SlsMat Jac, void *user_data, N_Vector tmp1,
-               N_Vector tmp2, N_Vector tmp3)
+               N_Vector, SlsMat Jac, void *user_data, N_Vector,
+               N_Vector, N_Vector)
     {
       IDA *self =
         static_cast <IDA *> (user_data);