changeset 23480:0670624ea91b

* __ode15__.cc: Avoid deprecated function warnings.
author Kai T. Ohlhus <k.ohlhus@gmail.com>
date Wed, 10 May 2017 15:04:28 +0200
parents 06bf3a0b08bf
children 73558a835b64
files libinterp/dldfcn/__ode15__.cc
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/dldfcn/__ode15__.cc	Tue May 09 12:49:53 2017 -0400
+++ b/libinterp/dldfcn/__ode15__.cc	Wed May 10 15:04:28 2017 +0200
@@ -902,7 +902,7 @@
 
     try
       {
-        tmp = feval (ida_fc, ovl (t, x, xdot), 1);
+        tmp = octave::feval (ida_fc, ovl (t, x, xdot), 1);
       }
     catch (octave::execution_exception& e)
       {
@@ -920,7 +920,7 @@
 
     try
       {
-        tmp = feval (ida_jc, ovl (t, x, xdot), 2);
+        tmp = octave::feval (ida_jc, ovl (t, x, xdot), 2);
       }
     catch (octave::execution_exception& e)
       {
@@ -938,7 +938,7 @@
 
     try
       {
-        tmp = feval (ida_jc, ovl (t, x, xdot), 2);
+        tmp = octave::feval (ida_jc, ovl (t, x, xdot), 2);
       }
     catch (octave::execution_exception& e)
       {