[Prev][Next][Index]
Re: sage unhappy about data member forward defs
- From: Beata Winnicka <bfatyga@slab.extreme.indiana.edu>
- Date: Thu, 27 Apr 95 14:02:46 -0500
- To: Lars Thomas Hansen <lth@cs.uoregon.edu>
- Subject: Re: sage unhappy about data member forward defs
- Cc: sage-bugs@rainier.extreme.indiana.edu
- Sender: owner-sage-bugs@extreme.indiana.edu
>The pc++ parser barfs at the following, which I think is valid:
>
> class foo {
> public:
> void *ILUMostSpecificObject () { return
> (this->ILUMostSpecificObj); };
> void ILUSetMostSpecificObject( void *o ) {
> this->ILUMostSpecificObj = o; };
> private:
> void *ILUMostSpecificObj;
> };
>
> main()
> {
> }
I've made (and CVSed) some changes to the parser so that the code
above now parses and unparses correctly. --Beata