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

[releng] Bump version of cdt.core for new API

Change-Id: I64fcde8659f97c133fedc700879bee4eb86d97e9
This commit is contained in:
Jonah Graham 2020-01-31 10:38:06 -05:00
parent 53ba4006b5
commit 6f9502c9c2
4 changed files with 4 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: 6.10.100.qualifier
Bundle-Version: 6.11.0.qualifier
Bundle-Activator: org.eclipse.cdt.core.CCorePlugin
Bundle-Vendor: %providerName
Bundle-Localization: plugin

View file

@ -136,7 +136,7 @@ public interface IASTUnaryExpression extends IASTExpression {
/**
* For GCC parsers in C++ mode, only: '__integer_pack ( expression )'
* @since 6.10
* @since 6.11
*/
public static final int op_integerPack = 19;

View file

@ -91,6 +91,6 @@ public class GCCKeywords {
/** @since 6.6 */
public static final char[] cp__is_constructible = "__is_constructible".toCharArray();
/** @since 6.10 */
/** @since 6.11*/
public static final char[] cp__integer_pack = "__integer_pack".toCharArray();
}

View file

@ -94,6 +94,6 @@ public interface IGCCToken extends IToken {
/** @since 6.6 */
int tTT_is_constructible = FIRST_RESERVED_IGCCToken + 35;
/** @since 6.10 */
/** @since 6.11*/
int tTT_integer_pack = FIRST_RESERVED_IGCCToken + 36;
}