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]

Re: Precompiled headers and General Parsing of Header File


>>>>> Kevin Atkinson <kevina@clark.net> writes:

> Also have you considered the idea of not fully parsing the header files
> with template information in it ot help speed up compiling of code that
> uses the STL.

> By not fully parsing the header file I mean skipping over the
> class/functions definitions.  For example:

Actually, g++ used to work this way.  I changed that in '96 so that
templates would actually work properly; trying to feed stuff back to the
parser is very tricky with a non-reentrant parser, and the semantics are
wrong anyway.  The standard specifies that names which do not depend on a
template argument are bound at the point of the template definition.

Jason


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