Mercurial > hg > octave-lyh
comparison src/ov-base.cc @ 7489:8e4592e49fa7
don't clear locked functions
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Mon, 18 Feb 2008 14:54:10 -0500 |
parents | 402168152bb9 |
children | 8c32f95c2639 |
comparison
equal
deleted
inserted
replaced
7488:6470f946a425 | 7489:8e4592e49fa7 |
---|---|
893 gripe_wrong_type_arg ("octave_base_value::sort ()", type_name ()); | 893 gripe_wrong_type_arg ("octave_base_value::sort ()", type_name ()); |
894 | 894 |
895 return octave_value(); | 895 return octave_value(); |
896 } | 896 } |
897 | 897 |
898 void | |
899 octave_base_value::lock (void) | |
900 { | |
901 gripe_wrong_type_arg ("octave_base_value::lock ()", type_name ()); | |
902 } | |
903 | |
904 void | |
905 octave_base_value::unlock (void) | |
906 { | |
907 gripe_wrong_type_arg ("octave_base_value::unlock ()", type_name ()); | |
908 } | |
909 | |
898 static void | 910 static void |
899 gripe_indexed_assignment (const std::string& tn1, const std::string& tn2) | 911 gripe_indexed_assignment (const std::string& tn1, const std::string& tn2) |
900 { | 912 { |
901 error ("assignment of `%s' to indexed `%s' not implemented", | 913 error ("assignment of `%s' to indexed `%s' not implemented", |
902 tn2.c_str (), tn1.c_str ()); | 914 tn2.c_str (), tn1.c_str ()); |