mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-06-07 17:56:01 +02:00
Correct since tags on new API for c++20 character types
Fixup for ad15e0e804
/ PR #342
This commit is contained in:
parent
f40f957c6c
commit
07b03aca10
5 changed files with 6 additions and 6 deletions
|
@ -142,7 +142,7 @@ public interface IASTSimpleDeclSpecifier extends IASTDeclSpecifier {
|
|||
|
||||
/**
|
||||
* <code>char8_t c;</code>
|
||||
* @since 8.1
|
||||
* @since 8.2
|
||||
*/
|
||||
public static final int t_char8_t = 19;
|
||||
|
||||
|
|
|
@ -38,7 +38,7 @@ public interface IBasicType extends IType {
|
|||
eDecimal64,
|
||||
/** @since 5.10 */
|
||||
eDecimal128,
|
||||
/** @since 8.1 */
|
||||
/** @since 8.2*/
|
||||
eChar8;
|
||||
}
|
||||
|
||||
|
|
|
@ -259,7 +259,7 @@ public interface ICPPNodeFactory extends INodeFactory {
|
|||
public ICPPASTLiteralExpression newLiteralExpression(int kind, String rep);
|
||||
|
||||
/**
|
||||
* @since 8.1
|
||||
* @since 8.2
|
||||
*/
|
||||
public ICPPASTLiteralExpression newLiteralExpression(int kind, String rep, boolean useChar8Type);
|
||||
|
||||
|
|
|
@ -119,7 +119,7 @@ public interface IToken {
|
|||
int t_case = 62;
|
||||
int t_catch = 63;
|
||||
int t_char = 64;
|
||||
/** @since 8.1 */
|
||||
/** @since 8.2*/
|
||||
int t_char8_t = 8102;
|
||||
/** @since 5.2 */
|
||||
int t_char16_t = 5202;
|
||||
|
|
|
@ -49,7 +49,7 @@ public class Keywords {
|
|||
public static final String CASE = "case";
|
||||
public static final String CATCH = "catch";
|
||||
public static final String CHAR = "char";
|
||||
/** @since 8.1 */
|
||||
/** @since 8.2*/
|
||||
public static final String CHAR8_T = "char8_t";
|
||||
/** @since 5.2 */
|
||||
public static final String CHAR16_T = "char16_t";
|
||||
|
@ -159,7 +159,7 @@ public class Keywords {
|
|||
public static final char[] cCASE = "case".toCharArray();
|
||||
public static final char[] cCATCH = "catch".toCharArray();
|
||||
public static final char[] cCHAR = "char".toCharArray();
|
||||
/** @since 8.1 */
|
||||
/** @since 8.2*/
|
||||
public static final char[] cCHAR8_T = CHAR8_T.toCharArray();
|
||||
/** @since 5.2 */
|
||||
public static final char[] cCHAR16_T = CHAR16_T.toCharArray();
|
||||
|
|
Loading…
Add table
Reference in a new issue