This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: RFA: Please review the new C++ demangler patch
- From: Gabriel Dos Reis <gdr at integrable-solutions dot net>
- To: dewar at gnat dot com (Robert Dewar)
- Cc: gcc at gcc dot gnu dot org, ofv at wanadoo dot es
- Date: 28 Jun 2003 00:53:07 +0200
- Subject: Re: RFA: Please review the new C++ demangler patch
- Organization: Integrable Solutions
- References: <20030627224820.E2E57F2A5C@nile.gnat.com>
dewar@gnat.com (Robert Dewar) writes:
| I must really be missing something, why should the demangler have to depend
| on high level abstractions like vector?
Excuse me, but std::vector is everything except a high-level abstraction.
It is C++ was of writing
malloc (some number);
while (not done) {
fiddle with memory;
reallaoc (memory, another number);
}
free (memory);
-- Gaby