1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-09 17:25:38 +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); public static IASTName NOT_INITIALIZED= new CPPASTName(null);
private char[] name; private char[] name;
public CPPASTName(char[] name) { public CPPASTName(char[] name) {
this.name = name; this.name = name;
} }
@ -163,8 +164,7 @@ public class CPPASTName extends CPPASTNameBase implements ICPPASTCompletionConte
break; break;
} }
} }
if (action.shouldVisitNames) { if (action.shouldVisitNames) {
switch (action.leave(this)) { switch (action.leave(this)) {
case ASTVisitor.PROCESS_ABORT: case ASTVisitor.PROCESS_ABORT: