Posted by Rob on October 12, 2002 at 01:20:20:
In Reply to: Re: There seems to be a problem with Assignment 3! posted by Rob on October 12, 2002 at 00:13:51:
I apologize for the previous post. I jumped the gun a little. The problematic piece of code is still:
void* operator new(sequence::size_type size)
I'm not sure why ::size_type is not being recognized as an unsigned int, but the fix should still work.
void* operator new(unsigned(sequence::size_type size))
-Rob