diff liboctave/Array.h @ 5392:017e427ab4d9

[project @ 2005-06-15 15:29:49 by jwe]
author jwe
date Wed, 15 Jun 2005 15:29:49 +0000
parents 4c8a2e4e0717
children 6e9a14b3c299
line wrap: on
line diff
--- a/liboctave/Array.h
+++ b/liboctave/Array.h
@@ -451,9 +451,9 @@
 
 public:
 
-  void resize (int n) { resize_no_fill (n); }
+  void resize (octave_idx_type n) { resize_no_fill (n); }
 
-  void resize (int n, const T& val) { resize_and_fill (n, val); }
+  void resize (octave_idx_type n, const T& val) { resize_and_fill (n, val); }
 
   void resize (const dim_vector& dv) { resize_no_fill (dv); }