diff src/pt-exp-base.cc @ 782:ffe18d3d64a6

[project @ 1994-10-07 19:01:20 by jwe]
author jwe
date Fri, 07 Oct 1994 19:01:34 +0000
parents a2f9d3fd720c
children 5148e500c2fb
line wrap: on
line diff
--- a/src/pt-exp-base.cc	Fri Oct 07 18:52:22 1994 +0000
+++ b/src/pt-exp-base.cc	Fri Oct 07 19:01:34 1994 +0000
@@ -651,7 +651,7 @@
 // A base class for objects that can be evaluated with argument lists.
 
 tree_constant
-tree_fvc::assign (const tree_constant& t, const Octave_object& args)
+tree_fvc::assign (tree_constant& t, const Octave_object& args)
 {
   panic_impossible ();
   return tree_constant ();
@@ -694,7 +694,7 @@
 }
 
 tree_constant
-tree_identifier::assign (const tree_constant& rhs)
+tree_identifier::assign (tree_constant& rhs)
 {
   tree_constant retval;
 
@@ -725,7 +725,7 @@
 }
 
 tree_constant
-tree_identifier::assign (const tree_constant& rhs, const Octave_object& args)
+tree_identifier::assign (tree_constant& rhs, const Octave_object& args)
 {
   tree_constant retval;
 
@@ -772,7 +772,7 @@
 }
 
 tree_constant
-tree_identifier::assign (SLList<char*> list, const tree_constant& rhs)
+tree_identifier::assign (SLList<char*> list, tree_constant& rhs)
 {
   tree_constant retval;
 
@@ -804,7 +804,7 @@
 }
 
 tree_constant
-tree_identifier::assign (SLList<char*> list, const tree_constant& rhs,
+tree_identifier::assign (SLList<char*> list, tree_constant& rhs,
 			 const Octave_object& args)
 {
   tree_constant retval;
@@ -1099,7 +1099,7 @@
 }
 
 tree_constant
-tree_indirect_ref::assign (const tree_constant& t)
+tree_indirect_ref::assign (tree_constant& t)
 {
   tree_constant retval;
 
@@ -1112,7 +1112,7 @@
 }
 
 tree_constant
-tree_indirect_ref::assign (const tree_constant& t, const Octave_object& args)
+tree_indirect_ref::assign (tree_constant& t, const Octave_object& args)
 {
   tree_constant retval;