Mercurial > hg > octave-nkf
diff src/ov.h @ 10544:9961fc022d9d
fix assignment to non-existing variables and octave_value::assign
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Fri, 23 Apr 2010 11:23:43 +0200 |
parents | 4d1fc073fbb7 |
children | d1194069e58c |
line wrap: on
line diff
--- a/src/ov.h +++ b/src/ov.h @@ -411,11 +411,11 @@ const std::list<octave_value_list>& idx, const octave_value& rhs); - octave_value assign (assign_op op, const std::string& type, + octave_value& assign (assign_op op, const std::string& type, const std::list<octave_value_list>& idx, const octave_value& rhs); - const octave_value& assign (assign_op, const octave_value& rhs); + octave_value& assign (assign_op, const octave_value& rhs); idx_vector index_vector (void) const { return rep->index_vector (); }