changeset 16585:e74ef19d2268

use octave_idx_type instead of int * ls-mat-ascii.cc (looks_like_mat_ascii_file): USe octave_idx_type instead of int for temporary variables.
author John W. Eaton <jwe@octave.org>
date Sun, 28 Apr 2013 23:21:43 -0400
parents 868d0bcfabae
children 2f766ceeb03e
files libinterp/interp-core/ls-mat-ascii.cc
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/libinterp/interp-core/ls-mat-ascii.cc
+++ b/libinterp/interp-core/ls-mat-ascii.cc
@@ -418,8 +418,8 @@
 
   if (is)
     {
-      int nr = 0;
-      int nc = 0;
+      octave_idx_type nr = 0;
+      octave_idx_type nc = 0;
 
       get_lines_and_columns (is, nr, nc, filename, true, true);