1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-21 21:52:10 +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:
Jonah Graham 2023-01-25 15:39:23 -05:00
parent 97dccc2c1e
commit a0f91038e0
5 changed files with 5 additions and 4 deletions

View file

@ -2,7 +2,7 @@ Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
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-Vendor: %providerName
Bundle-Localization: plugin

View file

@ -229,7 +229,7 @@ public interface IASTBinaryExpression extends IASTExpression {
/**
* For c++, only.
* <code>op_threewaycompare</code> represents <code><=></code> three-way comparison operator.
* @since 8.0
* @since 8.1
*/
public static final int op_threewaycomparison = 35;

View file

@ -85,7 +85,7 @@ public interface IToken {
int tNOTEQUAL = 35;
int tNOT = 36;
int tEQUAL = 37;
/** @since 8.0 */
/** @since 8.1 */
int tTHREEWAYCOMPARISON = 8001;
int tASSIGN = 38;
int tUNKNOWN_CHAR = 39;

View file

@ -279,6 +279,7 @@ public class Keywords {
public static final char[] cpNOTEQUAL = "!=".toCharArray();
public static final char[] cpNOT = "!".toCharArray();
public static final char[] cpEQUAL = "==".toCharArray();
/** @since 8.1 */
public static final char[] cpTHREEWAYCOMPARISON = "<=>".toCharArray();
public static final char[] cpASSIGN = "=".toCharArray();
public static final char[] cpSHIFTL = "<<".toCharArray();

View file

@ -209,7 +209,7 @@ public class DwarfConstants {
*/
public final static int DW_FORM_flag_present = 0x19;
/**
* @since 8.0
* @since 8.1
*/
public final static int DW_FORM_line_strp = 0x1f;
/**