1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-07-05 08:05:24 +02:00

Cosmetics

This commit is contained in:
Sergey Prigogin 2012-11-01 20:14:56 +01:00
parent e248471b54
commit fea61dd100
2 changed files with 2 additions and 3 deletions

View file

@ -6,7 +6,7 @@
* http://www.eclipse.org/legal/epl-v10.html * http://www.eclipse.org/legal/epl-v10.html
* *
* Contributors: * Contributors:
* Mike Kucera (IBM) - Initial API and implementation * Mike Kucera (IBM) - Initial API and implementation
*******************************************************************************/ *******************************************************************************/
package org.eclipse.cdt.core.dom.ast.cpp; package org.eclipse.cdt.core.dom.ast.cpp;
@ -20,7 +20,6 @@ import org.eclipse.cdt.core.dom.ast.IASTImplicitNameOwner;
* @noimplement This interface is not intended to be implemented by clients. * @noimplement This interface is not intended to be implemented by clients.
*/ */
public interface ICPPASTFunctionCallExpression extends IASTFunctionCallExpression, ICPPASTExpression, IASTImplicitNameOwner { public interface ICPPASTFunctionCallExpression extends IASTFunctionCallExpression, ICPPASTExpression, IASTImplicitNameOwner {
@Override @Override
ICPPASTFunctionCallExpression copy(); ICPPASTFunctionCallExpression copy();

View file

@ -193,7 +193,7 @@ public abstract class VariableReadWriteFlags {
break; break;
} }
} }
return READ | WRITE; // fallback return READ | WRITE; // Fallback
} }
protected int rwArgumentForFunctionCall(IFunctionType type, int parameterIdx, int indirection) { protected int rwArgumentForFunctionCall(IFunctionType type, int parameterIdx, int indirection) {