[cfe-dev] Patch for IdentifierResolver

Neil Booth neil at daikokuya.co.uk
Mon Apr 14 15:46:25 PDT 2008


Argiris Kirtzidis wrote:-

>  From a compiler's perspective, the difference between
> 
> int x,y;
> 
> and
> 
> int x;
> int y;
> 
> is meaningless, but for a source code analysis/refactoring tool it'd be 
> useful to keep the AST close to the source code.

Note that

   typedef int x;
   x x, y;

is quite different to

   typedef int x;
   x x;
   x y;

Neil.



More information about the cfe-dev mailing list