This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: RFA: Please review the new C++ demangler patch


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]