1
0
Fork 0
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:
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 * http://www.eclipse.org/legal/epl-v10.html
* *
* Contributors: * Contributors:
* Markus Schorn - Initial API and implementation * Markus Schorn - Initial API and implementation
*******************************************************************************/ *******************************************************************************/
package org.eclipse.cdt.internal.core.dom.parser.cpp; 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__. * An example is the built-in variable __func__.
*/ */
public class CPPBuiltinVariable extends CPPVariable { public class CPPBuiltinVariable extends CPPVariable {
private IType type=null; private IType type;
private char[] name=null; private char[] name;
private IScope scope=null; private IScope scope;
public CPPBuiltinVariable(IType type, char[] name, IScope scope) { public CPPBuiltinVariable(IType type, char[] name, IScope scope) {
super(null); super(null);
@ -54,7 +54,7 @@ public class CPPBuiltinVariable extends CPPVariable {
} }
/** /**
* returns null * Returns null.
*/ */
@Override @Override
public IASTNode[] getDeclarations() { public IASTNode[] getDeclarations() {
@ -62,7 +62,7 @@ public class CPPBuiltinVariable extends CPPVariable {
} }
/** /**
* returns null * Returns null.
*/ */
@Override @Override
public IASTNode getDefinition() { public IASTNode getDefinition() {
@ -70,7 +70,7 @@ public class CPPBuiltinVariable extends CPPVariable {
} }
/** /**
* does nothing * Does nothing.
*/ */
@Override @Override
public void addDefinition(IASTNode node) { public void addDefinition(IASTNode node) {
@ -78,7 +78,7 @@ public class CPPBuiltinVariable extends CPPVariable {
} }
/** /**
* does nothing * Does nothing.
*/ */
@Override @Override
public void addDeclaration(IASTNode node) { public void addDeclaration(IASTNode node) {
@ -103,7 +103,7 @@ public class CPPBuiltinVariable extends CPPVariable {
} }
/** /**
* returns true * Returns true.
*/ */
@Override @Override
public boolean isGloballyQualified() { public boolean isGloballyQualified() {