# HG changeset patch # User Jaroslav Hajek # Date 1285826422 -7200 # Node ID 4bec51eb58e20e32029e5fb7d571518028846b09 # Parent b721e12140ccfb01d15eeeaf4cee8995ca80e996 replace Octave_map->octave_map in pt-idx.h diff -r b721e12140cc -r 4bec51eb58e2 src/ChangeLog --- a/src/ChangeLog Wed Sep 29 22:08:34 2010 +0200 +++ b/src/ChangeLog Thu Sep 30 08:00:22 2010 +0200 @@ -1,3 +1,9 @@ +2010-09-30 Jaroslav Hajek + + * pt-idx.cc (tree_index_expression::make_arg_struct): Use octave_map + instead of Octave_map. + * pt-idx.h: Update decl. + 2010-09-29 Jaroslav Hajek * oct-map.cc (octave_map::contents): Fix off-by-1 error. diff -r b721e12140cc -r 4bec51eb58e2 src/pt-idx.cc --- a/src/pt-idx.cc Wed Sep 29 22:08:34 2010 +0200 +++ b/src/pt-idx.cc Thu Sep 30 08:00:22 2010 +0200 @@ -224,7 +224,7 @@ return fn; } -Octave_map +octave_map tree_index_expression::make_arg_struct (void) const { int n = args.size (); @@ -236,7 +236,7 @@ std::list::const_iterator p_arg_nm = arg_nm.begin (); std::list::const_iterator p_dyn_field = dyn_field.begin (); - Octave_map m; + octave_map m; for (int i = 0; i < n; i++) { diff -r b721e12140cc -r 4bec51eb58e2 src/pt-idx.h --- a/src/pt-idx.h Wed Sep 29 22:08:34 2010 +0200 +++ b/src/pt-idx.h Thu Sep 30 08:00:22 2010 +0200 @@ -30,7 +30,7 @@ class tree_walker; -class Octave_map; +class octave_map; class octave_value; class octave_value_list; class octave_lvalue; @@ -115,7 +115,7 @@ tree_index_expression (int l, int c); - Octave_map make_arg_struct (void) const; + octave_map make_arg_struct (void) const; std::string get_struct_index