This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: 3.2.2 c++ compile problems
- From: Gabriel Dos Reis <gdr at integrable-solutions dot net>
- To: Jack Howarth <howarth at bromo dot med dot uc dot edu>
- Cc: Craig Rodrigues <rodrigc at attbi dot com>, gcc at gcc dot gnu dot org
- Date: 23 Dec 2002 19:04:32 +0100
- Subject: Re: 3.2.2 c++ compile problems
- Organization: Integrable Solutions
- References: <200212231718.MAA29417@bromo.msbb.uc.edu><200212231800.NAA29533@bromo.msbb.uc.edu>
Jack Howarth <howarth@bromo.med.uc.edu> writes:
[...]
| which has...
|
| void *operator new(size_t size);
| void operator delete(void *p);
|
| void *operator new[](size_t size);
| void operator delete[](void *p);
|
| at line 22. I assume this is an abi change too? What is the best approach
| for that one? I'm am going to pass all of this back upstream to the
| author. Thanks again for any help.
Hand forward declaring standard entities is Bad Practice.
Please, consider #includeing standard headers instead. For memory
management, consider <new>.
-- Gaby