[Prev][Next][Index]
Re: Bug with generated print functions in pC++
- To: sage-bugs@cica.indiana.edu
- Subject: Re: Bug with generated print functions in pC++
- In-Reply-To: Your message of "Tue, 26 Jul 1994 19:16:23 CDT."
<199407270016.TAA07211@antares.mcs.anl.gov>
- Date: Wed, 27 Jul 1994 08:24:49 -0500
- From: Andrew Mauer <mauer@mcs.anl.gov>
> the typedef is the source of the problem. i will look
> into it.
I'm almost certain that a call to
getTrueType(MASK_MOST_DESCRIPTORS, FOLLOW_TYPEDEFS) inserted in the
correct place will take care of your typing problem.
There are two calls to something->type() in makeNewPrintf. Try
changing these to
something->type()->getTrueType(MASK_MOST_DESCRIPTORS, FOLLOW_TYPEDEFS)
and see if that works.
/Andrew/