Hi, On Wed, 16 Apr 2003, Zack Rusin wrote: > > - void* operator new(size_t sz, RenderArena* renderArena); > > + void* operator new(size_t sz, RenderArena* renderArena) throw(); > > "No throw guarantee" on operator new ? Are you sure about that one? Of course it's possible to have nothrow() new's. You would have to explicitely check the return values for being NULL, if you use those, _and_ want to be sure to not become hit by segfaults. Ciao, Michael.