diff src/pt-const.h @ 1581:c02f877ca525

[project @ 1995-10-23 12:09:33 by jwe]
author jwe
date Mon, 23 Oct 1995 12:09:33 +0000
parents 0d9e10d10bd7
children 2d0541468991
line wrap: on
line diff
--- a/src/pt-const.h
+++ b/src/pt-const.h
@@ -271,7 +271,7 @@
 
 	// But not this.
 
-	void convert_to_matrix_type (void);
+	void convert_to_matrix_type (int make_complex);
 
 	// Indexing and assignment.
 
@@ -283,7 +283,7 @@
 	void set_index (const Matrix& m);
 	void set_index (char c);
 
-	void set_index (const Octave_object& args);
+	void set_index (const Octave_object& args, int rhs_is_complex = 0);
 
 	tree_constant do_index (const Octave_object& args);
 
@@ -659,7 +659,8 @@
   tree_constant_rep::constant_type const_type (void) const
     { return rep->const_type (); }
 
-  void convert_to_matrix_type (void) { rep->convert_to_matrix_type (); }
+  void convert_to_matrix_type (int make_complex)
+    { rep->convert_to_matrix_type (make_complex); }
 
   // Can we make these go away?