Mercurial > hg > octave-nkf
diff src/DLD-FUNCTIONS/qr.cc @ 8811:20dfb885f877
int -> octave_idx fixes
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Wed, 18 Feb 2009 23:34:03 -0500 (2009-02-19) |
parents | 53f8fca6dd69 |
children | c3b743b1b1c6 |
line wrap: on
line diff
--- a/src/DLD-FUNCTIONS/qr.cc +++ b/src/DLD-FUNCTIONS/qr.cc @@ -989,7 +989,8 @@ { if (check_index (argj, col)) { - MArray<octave_idx_type> j = argj.int_vector_value (); + MArray<octave_idx_type> j + = argj.octave_idx_type_vector_value (); if (argq.is_real_type () && argr.is_real_type () @@ -1202,7 +1203,8 @@ { if (check_index (argj, col)) { - MArray<octave_idx_type> j = argj.int_vector_value (); + MArray<octave_idx_type> j + = argj.octave_idx_type_vector_value (); if (argq.is_real_type () && argr.is_real_type ())