On Tue, 15 May 2001, Mike Nordell wrote: > > void* getFirstItem() const; > > void* getLastItem() const; > > These are also errors. Either they should be non-const, or they should > return const pointers. I tried to make them const, but then ut_stack::pop gives a warning. bool UT_Stack::pop(void ** ppVoid) Would it be ok to make pop instead have the following signature: bool UT_Stack::pop(const void* & ppVoid) similarly with the other stack accessors. pat
- crasher fix Patrick Lam
- Re: crasher fix Mike Nordell
- const correctness [was: crasher fix] Patrick Lam
- const correctness [was: crasher fix] Mike Nordell
- Re: crasher fix Joaqu�n Cuenca Abela
- Re: crasher fix Joaquin Cuenca Abela
