1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-07 17:56:01 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2012-06-04 15:11:32 -07:00
parent 4e872b05cb
commit 34d5ba7154

View file

@ -87,11 +87,7 @@ public class CPPASTFunctionCallExpression extends ASTNode
CPPASTFunctionCallExpression copy = new CPPASTFunctionCallExpression(null, args); CPPASTFunctionCallExpression copy = new CPPASTFunctionCallExpression(null, args);
copy.setFunctionNameExpression(functionName == null ? null : functionName.copy(style)); copy.setFunctionNameExpression(functionName == null ? null : functionName.copy(style));
copy.setOffsetAndLength(this); return copy(copy, style);
if (style == CopyStyle.withLocations) {
copy.setCopyLocation(this);
}
return copy;
} }
@Override @Override