A
Alex Vinokur
Foo* p = new (nothrow) Foo;
Should we use
operator delete (p, nothrow) ?
Or can we use
delete p; ?
If we use
operator delete (p, nothrow)
how to replace it by operator style?
delete (nothrow) p; // Compiler rejects that
Alex Vinokur
email: alex DOT vinokur AT gmail DOT com
http://mathforum.org/library/view/10978.html
http://sourceforge.net/users/alexvn
Should we use
operator delete (p, nothrow) ?
Or can we use
delete p; ?
If we use
operator delete (p, nothrow)
how to replace it by operator style?
delete (nothrow) p; // Compiler rejects that
Alex Vinokur
email: alex DOT vinokur AT gmail DOT com
http://mathforum.org/library/view/10978.html
http://sourceforge.net/users/alexvn