mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 01:36:01 +02:00
[releng] Bump version of cdt.core for new API
Change-Id: I64fcde8659f97c133fedc700879bee4eb86d97e9
This commit is contained in:
parent
53ba4006b5
commit
6f9502c9c2
4 changed files with 4 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: 6.10.100.qualifier
|
Bundle-Version: 6.11.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
|
||||||
|
|
|
@ -136,7 +136,7 @@ public interface IASTUnaryExpression extends IASTExpression {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* For GCC parsers in C++ mode, only: '__integer_pack ( expression )'
|
* For GCC parsers in C++ mode, only: '__integer_pack ( expression )'
|
||||||
* @since 6.10
|
* @since 6.11
|
||||||
*/
|
*/
|
||||||
public static final int op_integerPack = 19;
|
public static final int op_integerPack = 19;
|
||||||
|
|
||||||
|
|
|
@ -91,6 +91,6 @@ public class GCCKeywords {
|
||||||
/** @since 6.6 */
|
/** @since 6.6 */
|
||||||
public static final char[] cp__is_constructible = "__is_constructible".toCharArray();
|
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();
|
public static final char[] cp__integer_pack = "__integer_pack".toCharArray();
|
||||||
}
|
}
|
||||||
|
|
|
@ -94,6 +94,6 @@ public interface IGCCToken extends IToken {
|
||||||
/** @since 6.6 */
|
/** @since 6.6 */
|
||||||
int tTT_is_constructible = FIRST_RESERVED_IGCCToken + 35;
|
int tTT_is_constructible = FIRST_RESERVED_IGCCToken + 35;
|
||||||
|
|
||||||
/** @since 6.10 */
|
/** @since 6.11*/
|
||||||
int tTT_integer_pack = FIRST_RESERVED_IGCCToken + 36;
|
int tTT_integer_pack = FIRST_RESERVED_IGCCToken + 36;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue