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.