mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-08 10:16:03 +02:00
Cosmetics.
This commit is contained in:
parent
ea1547dae1
commit
6b5824dedf
1 changed files with 2 additions and 2 deletions
|
@ -47,7 +47,7 @@ public class CPPASTFunctionCallExpression extends ASTNode implements
|
||||||
private IASTExpression functionName;
|
private IASTExpression functionName;
|
||||||
private IASTInitializerClause[] fArguments;
|
private IASTInitializerClause[] fArguments;
|
||||||
|
|
||||||
private IASTImplicitName[] implicitNames = null;
|
private IASTImplicitName[] implicitNames;
|
||||||
private IType type; // cached type of expression
|
private IType type; // cached type of expression
|
||||||
private ICPPFunction overload= UNINITIALIZED_FUNCTION;
|
private ICPPFunction overload= UNINITIALIZED_FUNCTION;
|
||||||
|
|
||||||
|
@ -65,7 +65,7 @@ public class CPPASTFunctionCallExpression extends ASTNode implements
|
||||||
IASTInitializerClause[] args = null;
|
IASTInitializerClause[] args = null;
|
||||||
if (fArguments.length > 0) {
|
if (fArguments.length > 0) {
|
||||||
args= new IASTInitializerClause[fArguments.length];
|
args= new IASTInitializerClause[fArguments.length];
|
||||||
for (int i=0; i<fArguments.length; i++) {
|
for (int i = 0; i < fArguments.length; i++) {
|
||||||
args[i]= fArguments[i].copy();
|
args[i]= fArguments[i].copy();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue