diff liboctave/numeric/DASRT.h @ 22960:0d1422cb7e93

use F77_INT instead of octave_idx_type for liboctave ODE and DAE classes * DASPK.cc, DASRT.cc, DASSL.cc, LSODE.cc: Use F77_INT instead of octave_idx_type for integer data passed to Fortran subroutines. * DASPK.h, DASRT.h, DASSL.h, LSODE.h: Use octave_f77_int_type as needed in public interface files.
author John W. Eaton <jwe@octave.org>
date Tue, 27 Dec 2016 11:58:30 -0500
parents 87e3163f6c87
children ef4d915df748
line wrap: on
line diff
--- a/liboctave/numeric/DASRT.h	Tue Dec 27 10:24:03 2016 -0500
+++ b/liboctave/numeric/DASRT.h	Tue Dec 27 11:58:30 2016 -0500
@@ -105,14 +105,14 @@
 
   bool initialized;
 
-  octave_idx_type liw;
-  octave_idx_type lrw;
+  octave_f77_int_type liw;
+  octave_f77_int_type lrw;
 
-  octave_idx_type ng;
+  octave_f77_int_type ng;
 
-  Array<octave_idx_type> info;
-  Array<octave_idx_type> iwork;
-  Array<octave_idx_type> jroot;
+  Array<octave_f77_int_type> info;
+  Array<octave_f77_int_type> iwork;
+  Array<octave_f77_int_type> jroot;
 
   Array<double> rwork;