Skip to content

Commit

Permalink
Correct since tags on new API for c++20 character types
Browse files Browse the repository at this point in the history
Fixup for ad15e0e / PR #342
  • Loading branch information
jonahgraham committed Apr 21, 2023
1 parent f40f957 commit 07b03ac
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ enum Kind {
eDecimal64,
/** @since 5.10 */
eDecimal128,
/** @since 8.1 */
/** @since 8.2*/
eChar8;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ public ICPPASTFoldExpression newFoldExpression(int opToken, boolean isComma, IAS
public ICPPASTLiteralExpression newLiteralExpression(int kind, String rep);

/**
* @since 8.1
* @since 8.2
*/
public ICPPASTLiteralExpression newLiteralExpression(int kind, String rep, boolean useChar8Type);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down Expand Up @@ -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();
Expand Down

0 comments on commit 07b03ac

Please sign in to comment.