1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-24 09:25:31 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2011-02-11 05:23:47 +00:00
parent 8bec791d32
commit 9959005ff7

View file

@ -36,6 +36,7 @@ public class CPPASTName extends CPPASTNameBase implements ICPPASTCompletionConte
public static IASTName NOT_INITIALIZED= new CPPASTName(null);
private char[] name;
public CPPASTName(char[] name) {
this.name = name;
}
@ -163,8 +164,7 @@ public class CPPASTName extends CPPASTNameBase implements ICPPASTCompletionConte
break;
}
}
if (action.shouldVisitNames) {
switch (action.leave(this)) {
case ASTVisitor.PROCESS_ABORT: