1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 14:42:11 +02:00

Removed IASTBinaryExpression.op_last.

Change-Id: Ib0fbe7eb791c2e740441a644d4042662f947926c
This commit is contained in:
Sergey Prigogin 2016-03-14 18:12:45 -07:00
parent f1944d2d7f
commit 3199dc91bf
3 changed files with 0 additions and 24 deletions

View file

@ -223,13 +223,6 @@ public interface IASTBinaryExpression extends IASTExpression {
*/
public static final int op_ellipses= 34;
/**
* @deprecated All constants must be defined here, to avoid using the same value twice.
* @noreference This field is not intended to be referenced by clients.
*/
@Deprecated
public static final int op_last = op_ellipses;
/**
* Get the first operand.
*

View file

@ -32,14 +32,6 @@ public interface ICPPASTBinaryExpression extends IASTBinaryExpression, ICPPASTEx
*/
public static final int op_pmarrow = IASTBinaryExpression.op_pmarrow;
/**
* @deprecated all constants must be defined in {@link IASTBinaryExpression}, to avoid
* duplicate usage of the same constant.
* @noreference This field is not intended to be referenced by clients.
*/
@Deprecated
public static final int op_last = IASTBinaryExpression.op_last;
/**
* @since 5.1
*/

View file

@ -30,18 +30,9 @@ public interface IGPPASTBinaryExpression extends ICPPASTBinaryExpression {
*/
public static final int op_min = IASTBinaryExpression.op_min;
/**
* @deprecated All constants must be defined in {@link IASTBinaryExpression} to avoid
* using a constant twice.
* @noreference This field is not intended to be referenced by clients.
*/
@Deprecated
public static final int op_last = IASTBinaryExpression.op_last;
/**
* @since 5.1
*/
@Override
public IGPPASTBinaryExpression copy();
}