mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-23 14:42:11 +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 IASTInitializerClause[] fArguments;
|
||||
|
||||
private IASTImplicitName[] implicitNames = null;
|
||||
private IASTImplicitName[] implicitNames;
|
||||
private IType type; // cached type of expression
|
||||
private ICPPFunction overload= UNINITIALIZED_FUNCTION;
|
||||
|
||||
|
@ -65,7 +65,7 @@ public class CPPASTFunctionCallExpression extends ASTNode implements
|
|||
IASTInitializerClause[] args = null;
|
||||
if (fArguments.length > 0) {
|
||||
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();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue