Mercurial > hg > octave-lyh
comparison src/ov-base.cc @ 5943:c038c2947ee1
[project @ 2006-08-18 21:27:03 by jwe]
author | jwe |
---|---|
date | Fri, 18 Aug 2006 21:27:04 +0000 |
parents | c20eb7330d13 |
children | cdef72fcd206 |
comparison
equal
deleted
inserted
replaced
5942:a02a305e06ee | 5943:c038c2947ee1 |
---|---|
478 type_name ()); | 478 type_name ()); |
479 return retval; | 479 return retval; |
480 } | 480 } |
481 | 481 |
482 bool | 482 bool |
483 octave_base_value::bool_value (void) const | 483 octave_base_value::bool_value (bool) const |
484 { | 484 { |
485 bool retval = false; | 485 bool retval = false; |
486 gripe_wrong_type_arg ("octave_base_value::bool_value()", type_name ()); | 486 gripe_wrong_type_arg ("octave_base_value::bool_value()", type_name ()); |
487 return retval; | 487 return retval; |
488 } | 488 } |
489 | 489 |
490 boolMatrix | 490 boolMatrix |
491 octave_base_value::bool_matrix_value (void) const | 491 octave_base_value::bool_matrix_value (bool) const |
492 { | 492 { |
493 boolMatrix retval; | 493 boolMatrix retval; |
494 gripe_wrong_type_arg ("octave_base_value::bool_matrix_value()", | 494 gripe_wrong_type_arg ("octave_base_value::bool_matrix_value()", |
495 type_name ()); | 495 type_name ()); |
496 return retval; | 496 return retval; |
497 } | 497 } |
498 | 498 |
499 boolNDArray | 499 boolNDArray |
500 octave_base_value::bool_array_value (void) const | 500 octave_base_value::bool_array_value (bool) const |
501 { | 501 { |
502 boolNDArray retval; | 502 boolNDArray retval; |
503 gripe_wrong_type_arg ("octave_base_value::bool_array_value()", | 503 gripe_wrong_type_arg ("octave_base_value::bool_array_value()", |
504 type_name ()); | 504 type_name ()); |
505 return retval; | 505 return retval; |