From: "Todd C. Mowry" <tcm@eecg.toronto.edu>
Date: 	Thu, 5 May 1994 21:06:36 -0400
Subject: new "sym_addr" constructor requested
Message-Id: <94May5.210650edt.19022@picton.eecg.toronto.edu>


I often find myself making copies of "sym_addr" objects, and currently 
there isn't a nice way to do this.

What I do now is the following:

	sym_addr *new_sa = new sym_addr(old_sa->symbol(),old_sa->offset());

What I would like to do instead is:

	sym_addr *new_sa = new sym_addr(old_sa);

Therefore it would be nice if there was a sym_addr constructor that took
another sym_addr as its argument.

Another possibility is to define an "operator =" function for sym_addr, 
so that I could do something like:

	new_sa = old_sa;

Thanks!
Todd


From: "Todd C. Mowry" <tcm@eecg.toronto.edu>
Date: 	Thu, 5 May 1994 16:19:11 -0400
Subject: very simple change to fract_vector.h
Message-Id: <94May5.161920edt.19109@picton.eecg.toronto.edu>


It would be nice if the "print" method for the "vector_space" class used
"stdout" as a default (as the "fract_vector" class does, also in 
suifmath/fract_vector.h).

Todd