Mercurial > hg > octave-nkf
comparison 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 |
comparison
equal
deleted
inserted
replaced
10543:f41c6634d5af | 10544:9961fc022d9d |
---|---|
409 | 409 |
410 octave_value subsasgn (const std::string& type, | 410 octave_value subsasgn (const std::string& type, |
411 const std::list<octave_value_list>& idx, | 411 const std::list<octave_value_list>& idx, |
412 const octave_value& rhs); | 412 const octave_value& rhs); |
413 | 413 |
414 octave_value assign (assign_op op, const std::string& type, | 414 octave_value& assign (assign_op op, const std::string& type, |
415 const std::list<octave_value_list>& idx, | 415 const std::list<octave_value_list>& idx, |
416 const octave_value& rhs); | 416 const octave_value& rhs); |
417 | 417 |
418 const octave_value& assign (assign_op, const octave_value& rhs); | 418 octave_value& assign (assign_op, const octave_value& rhs); |
419 | 419 |
420 idx_vector index_vector (void) const | 420 idx_vector index_vector (void) const |
421 { return rep->index_vector (); } | 421 { return rep->index_vector (); } |
422 | 422 |
423 // Size. | 423 // Size. |