1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 10:16:03 +02:00

Cosmetics.

Change-Id: I157beb9b3ce003003173c95cd261826ac65dbeb7
This commit is contained in:
Sergey Prigogin 2017-01-18 20:19:46 -08:00
parent 1af8428deb
commit 2c8c7a9bca

View file

@ -6,7 +6,7 @@
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Markus Schorn - Initial API and implementation
* Markus Schorn - Initial API and implementation
*******************************************************************************/
package org.eclipse.cdt.internal.core.dom.parser.cpp;
@ -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() {