1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-01 06:05:24 +02:00

Fix Offsets on Variables.

This commit is contained in:
John Camelon 2003-07-23 13:59:56 +00:00
parent 52e1267d4a
commit 89395c5d38

View file

@ -53,7 +53,8 @@ public class ASTVariable extends ASTDeclaration implements IASTVariable
this.isStatic = isStatic;
this.name = name;
qualifiedName = new ASTQualifiedNamedElement( scope, name );
setStartingOffset(startingOffset);
setNameOffset(nameOffset);
}
/* (non-Javadoc)
* @see org.eclipse.cdt.core.parser.ast.IASTVariable#isAuto()