Skip to content

Commit 07b03ac

Browse files
committed
Correct since tags on new API for c++20 character types
Fixup for ad15e0e / PR #342
1 parent f40f957 commit 07b03ac

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IASTSimpleDeclSpecifier.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public interface IASTSimpleDeclSpecifier extends IASTDeclSpecifier {
142142

143143
/**
144144
* <code>char8_t c;</code>
145-
* @since 8.1
145+
* @since 8.2
146146
*/
147147
public static final int t_char8_t = 19;
148148

core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/IBasicType.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ enum Kind {
3838
eDecimal64,
3939
/** @since 5.10 */
4040
eDecimal128,
41-
/** @since 8.1 */
41+
/** @since 8.2*/
4242
eChar8;
4343
}
4444

core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/dom/ast/cpp/ICPPNodeFactory.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ public ICPPASTFoldExpression newFoldExpression(int opToken, boolean isComma, IAS
259259
public ICPPASTLiteralExpression newLiteralExpression(int kind, String rep);
260260

261261
/**
262-
* @since 8.1
262+
* @since 8.2
263263
*/
264264
public ICPPASTLiteralExpression newLiteralExpression(int kind, String rep, boolean useChar8Type);
265265

core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/parser/IToken.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public interface IToken {
119119
int t_case = 62;
120120
int t_catch = 63;
121121
int t_char = 64;
122-
/** @since 8.1 */
122+
/** @since 8.2*/
123123
int t_char8_t = 8102;
124124
/** @since 5.2 */
125125
int t_char16_t = 5202;

core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/parser/Keywords.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public class Keywords {
4949
public static final String CASE = "case";
5050
public static final String CATCH = "catch";
5151
public static final String CHAR = "char";
52-
/** @since 8.1 */
52+
/** @since 8.2*/
5353
public static final String CHAR8_T = "char8_t";
5454
/** @since 5.2 */
5555
public static final String CHAR16_T = "char16_t";
@@ -159,7 +159,7 @@ public class Keywords {
159159
public static final char[] cCASE = "case".toCharArray();
160160
public static final char[] cCATCH = "catch".toCharArray();
161161
public static final char[] cCHAR = "char".toCharArray();
162-
/** @since 8.1 */
162+
/** @since 8.2*/
163163
public static final char[] cCHAR8_T = CHAR8_T.toCharArray();
164164
/** @since 5.2 */
165165
public static final char[] cCHAR16_T = CHAR16_T.toCharArray();

0 commit comments

Comments
 (0)