mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 18:26:01 +02:00
Cosmetics.
Change-Id: I157beb9b3ce003003173c95cd261826ac65dbeb7
This commit is contained in:
parent
1af8428deb
commit
2c8c7a9bca
1 changed files with 9 additions and 9 deletions
|
@ -22,9 +22,9 @@ import org.eclipse.cdt.core.dom.ast.IType;
|
|||
* An example is the built-in variable __func__.
|
||||
*/
|
||||
public class CPPBuiltinVariable extends CPPVariable {
|
||||
private IType type=null;
|
||||
private char[] name=null;
|
||||
private IScope scope=null;
|
||||
private IType type;
|
||||
private char[] name;
|
||||
private IScope scope;
|
||||
|
||||
public CPPBuiltinVariable(IType type, char[] name, IScope scope) {
|
||||
super(null);
|
||||
|
@ -54,7 +54,7 @@ public class CPPBuiltinVariable extends CPPVariable {
|
|||
}
|
||||
|
||||
/**
|
||||
* returns null
|
||||
* Returns null.
|
||||
*/
|
||||
@Override
|
||||
public IASTNode[] getDeclarations() {
|
||||
|
@ -62,7 +62,7 @@ public class CPPBuiltinVariable extends CPPVariable {
|
|||
}
|
||||
|
||||
/**
|
||||
* returns null
|
||||
* Returns null.
|
||||
*/
|
||||
@Override
|
||||
public IASTNode getDefinition() {
|
||||
|
@ -70,7 +70,7 @@ public class CPPBuiltinVariable extends CPPVariable {
|
|||
}
|
||||
|
||||
/**
|
||||
* does nothing
|
||||
* Does nothing.
|
||||
*/
|
||||
@Override
|
||||
public void addDefinition(IASTNode node) {
|
||||
|
@ -78,7 +78,7 @@ public class CPPBuiltinVariable extends CPPVariable {
|
|||
}
|
||||
|
||||
/**
|
||||
* does nothing
|
||||
* Does nothing.
|
||||
*/
|
||||
@Override
|
||||
public void addDeclaration(IASTNode node) {
|
||||
|
@ -103,7 +103,7 @@ public class CPPBuiltinVariable extends CPPVariable {
|
|||
}
|
||||
|
||||
/**
|
||||
* returns true
|
||||
* Returns true.
|
||||
*/
|
||||
@Override
|
||||
public boolean isGloballyQualified() {
|
||||
|
|
Loading…
Add table
Reference in a new issue