Mercurial > hg > octave-lyh
diff src/utils.h @ 5275:23b37da9fd5b
[project @ 2005-04-08 16:07:35 by jwe]
author | jwe |
---|---|
date | Fri, 08 Apr 2005 16:07:37 +0000 |
parents | 508238e65af7 |
children | 4c8a2e4e0717 |
line wrap: on
line diff
--- a/src/utils.h +++ b/src/utils.h @@ -46,7 +46,7 @@ const std::string& s, int min_toks_to_match, int max_toks); -extern int empty_arg (const char *name, int nr, int nc); +extern int empty_arg (const char *name, octave_idx_type nr, octave_idx_type nc); extern std::string search_path_for_file (const std::string&, const string_vector&); @@ -75,13 +75,13 @@ extern void get_dimensions (const octave_value& a, const octave_value& b, - const char *warn_for, int& nr, int& nc); + const char *warn_for, octave_idx_type& nr, octave_idx_type& nc); extern void get_dimensions (const octave_value& a, - const char *warn_for, int& nr, int& nc); + const char *warn_for, octave_idx_type& nr, octave_idx_type& nc); -extern Matrix identity_matrix (int nr, int nc); +extern Matrix identity_matrix (octave_idx_type nr, octave_idx_type nc); extern int octave_format (std::ostream& os, const char *fmt, ...);