diff src/ov-base.cc @ 5785:6b9cec830d72

[project @ 2006-05-03 19:32:46 by dbateman]
author dbateman
date Wed, 03 May 2006 19:32:48 +0000
parents faafc2d98b8d
children 1138ced03f14
line wrap: on
line diff
--- a/src/ov-base.cc	Wed May 03 05:57:16 2006 +0000
+++ b/src/ov-base.cc	Wed May 03 19:32:48 2006 +0000
@@ -250,6 +250,20 @@
   return octave_value ();
 }
 
+MatrixType 
+octave_base_value::matrix_type (void) const
+{
+  gripe_wrong_type_arg ("octave_base_value::matrix_type ()", type_name ());
+  return MatrixType ();
+}
+
+MatrixType 
+octave_base_value::matrix_type (const MatrixType&) const
+{
+  gripe_wrong_type_arg ("octave_base_value::matrix_type ()", type_name ());
+  return MatrixType ();
+}
+
 octave_value
 octave_base_value::all (int) const
 {