mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-22 06:02:11 +02:00
Add and correct since tags for new API in 8.1.0
o.e.cdt.core 8.0.0 was released as part of CDT 11, so this new non-breaking API needs a version bump to 8.1.0.
This commit is contained in:
parent
97dccc2c1e
commit
a0f91038e0
5 changed files with 5 additions and 4 deletions
|
@ -2,7 +2,7 @@ Manifest-Version: 1.0
|
||||||
Bundle-ManifestVersion: 2
|
Bundle-ManifestVersion: 2
|
||||||
Bundle-Name: %pluginName
|
Bundle-Name: %pluginName
|
||||||
Bundle-SymbolicName: org.eclipse.cdt.core; singleton:=true
|
Bundle-SymbolicName: org.eclipse.cdt.core; singleton:=true
|
||||||
Bundle-Version: 8.0.100.qualifier
|
Bundle-Version: 8.1.0.qualifier
|
||||||
Bundle-Activator: org.eclipse.cdt.core.CCorePlugin
|
Bundle-Activator: org.eclipse.cdt.core.CCorePlugin
|
||||||
Bundle-Vendor: %providerName
|
Bundle-Vendor: %providerName
|
||||||
Bundle-Localization: plugin
|
Bundle-Localization: plugin
|
||||||
|
|
|
@ -229,7 +229,7 @@ public interface IASTBinaryExpression extends IASTExpression {
|
||||||
/**
|
/**
|
||||||
* For c++, only.
|
* For c++, only.
|
||||||
* <code>op_threewaycompare</code> represents <code><=></code> three-way comparison operator.
|
* <code>op_threewaycompare</code> represents <code><=></code> three-way comparison operator.
|
||||||
* @since 8.0
|
* @since 8.1
|
||||||
*/
|
*/
|
||||||
public static final int op_threewaycomparison = 35;
|
public static final int op_threewaycomparison = 35;
|
||||||
|
|
||||||
|
|
|
@ -85,7 +85,7 @@ public interface IToken {
|
||||||
int tNOTEQUAL = 35;
|
int tNOTEQUAL = 35;
|
||||||
int tNOT = 36;
|
int tNOT = 36;
|
||||||
int tEQUAL = 37;
|
int tEQUAL = 37;
|
||||||
/** @since 8.0 */
|
/** @since 8.1 */
|
||||||
int tTHREEWAYCOMPARISON = 8001;
|
int tTHREEWAYCOMPARISON = 8001;
|
||||||
int tASSIGN = 38;
|
int tASSIGN = 38;
|
||||||
int tUNKNOWN_CHAR = 39;
|
int tUNKNOWN_CHAR = 39;
|
||||||
|
|
|
@ -279,6 +279,7 @@ public class Keywords {
|
||||||
public static final char[] cpNOTEQUAL = "!=".toCharArray();
|
public static final char[] cpNOTEQUAL = "!=".toCharArray();
|
||||||
public static final char[] cpNOT = "!".toCharArray();
|
public static final char[] cpNOT = "!".toCharArray();
|
||||||
public static final char[] cpEQUAL = "==".toCharArray();
|
public static final char[] cpEQUAL = "==".toCharArray();
|
||||||
|
/** @since 8.1 */
|
||||||
public static final char[] cpTHREEWAYCOMPARISON = "<=>".toCharArray();
|
public static final char[] cpTHREEWAYCOMPARISON = "<=>".toCharArray();
|
||||||
public static final char[] cpASSIGN = "=".toCharArray();
|
public static final char[] cpASSIGN = "=".toCharArray();
|
||||||
public static final char[] cpSHIFTL = "<<".toCharArray();
|
public static final char[] cpSHIFTL = "<<".toCharArray();
|
||||||
|
|
|
@ -209,7 +209,7 @@ public class DwarfConstants {
|
||||||
*/
|
*/
|
||||||
public final static int DW_FORM_flag_present = 0x19;
|
public final static int DW_FORM_flag_present = 0x19;
|
||||||
/**
|
/**
|
||||||
* @since 8.0
|
* @since 8.1
|
||||||
*/
|
*/
|
||||||
public final static int DW_FORM_line_strp = 0x1f;
|
public final static int DW_FORM_line_strp = 0x1f;
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Add table
Reference in a new issue