comparison src/ov-base.cc @ 3544:71bd2d124119

[project @ 2000-02-02 21:02:31 by jwe]
author jwe
date Wed, 02 Feb 2000 21:02:41 +0000
parents ea583bc68959
children e8627dc4bdf2
comparison
equal deleted inserted replaced
3543:c5b996022ef7 3544:71bd2d124119
59 error ("can't perform indexing operations for %s type", nm.c_str ()); 59 error ("can't perform indexing operations for %s type", nm.c_str ());
60 return octave_value (); 60 return octave_value ();
61 } 61 }
62 62
63 octave_value_list 63 octave_value_list
64 octave_base_value::do_index_op (int, const octave_value_list&) 64 octave_base_value::do_multi_index_op (int, const octave_value_list&)
65 { 65 {
66 std::string nm = type_name (); 66 std::string nm = type_name ();
67 error ("can't perform indexing operations for %s type", nm.c_str ()); 67 error ("can't perform indexing operations for %s type", nm.c_str ());
68 return octave_value (); 68 return octave_value ();
69 } 69 }