mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-15 12:15:47 +02:00
Cosmetics.
This commit is contained in:
parent
7e8bec4001
commit
654cb74090
1 changed files with 1 additions and 3 deletions
|
@ -32,7 +32,6 @@ import org.eclipse.cdt.internal.core.dom.parser.IASTAmbiguityParent;
|
||||||
*/
|
*/
|
||||||
public class CPPASTFunctionDefinition extends ASTNode
|
public class CPPASTFunctionDefinition extends ASTNode
|
||||||
implements ICPPASTFunctionDefinition, IASTAmbiguityParent {
|
implements ICPPASTFunctionDefinition, IASTAmbiguityParent {
|
||||||
|
|
||||||
private IASTDeclSpecifier declSpecifier;
|
private IASTDeclSpecifier declSpecifier;
|
||||||
private IASTFunctionDeclarator declarator;
|
private IASTFunctionDeclarator declarator;
|
||||||
private IASTStatement bodyStatement;
|
private IASTStatement bodyStatement;
|
||||||
|
@ -112,7 +111,6 @@ public class CPPASTFunctionDefinition extends ASTNode
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public void addMemberInitializer(ICPPASTConstructorChainInitializer initializer) {
|
public void addMemberInitializer(ICPPASTConstructorChainInitializer initializer) {
|
||||||
assertNotFrozen();
|
assertNotFrozen();
|
||||||
if (initializer != null) {
|
if (initializer != null) {
|
||||||
|
@ -131,7 +129,7 @@ public class CPPASTFunctionDefinition extends ASTNode
|
||||||
}
|
}
|
||||||
|
|
||||||
public IScope getScope() {
|
public IScope getScope() {
|
||||||
return ((ICPPASTFunctionDeclarator)declarator).getFunctionScope();
|
return ((ICPPASTFunctionDeclarator) declarator).getFunctionScope();
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isDefaulted() {
|
public boolean isDefaulted() {
|
||||||
|
|
Loading…
Add table
Reference in a new issue