mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-07-24 01:15:29 +02:00
Cosmetics.
This commit is contained in:
parent
d798ab8f2a
commit
8995b830aa
1 changed files with 22 additions and 22 deletions
|
@ -19,39 +19,39 @@ package org.eclipse.cdt.core.parser;
|
|||
*/
|
||||
@SuppressWarnings("nls")
|
||||
public class GCCKeywords {
|
||||
public static final String TYPEOF = "typeof";
|
||||
public static final String __ALIGNOF__ = "__alignof__";
|
||||
public static final String __ATTRIBUTE__ = "__attribute__";
|
||||
public static final String __DECLSPEC = "__declspec";
|
||||
public static final String TYPEOF = "typeof";
|
||||
public static final String __ALIGNOF__ = "__alignof__";
|
||||
public static final String __ATTRIBUTE__ = "__attribute__";
|
||||
public static final String __DECLSPEC = "__declspec";
|
||||
/** @since 5.5 */
|
||||
public static final String __INT128 = "__int128";
|
||||
/** @since 5.5 */
|
||||
public static final String __FLOAT128 = "__float128";
|
||||
|
||||
public static final char[]
|
||||
public static final char[]
|
||||
cpTYPEOF = TYPEOF.toCharArray(),
|
||||
cp__ALIGNOF__ = __ALIGNOF__.toCharArray(),
|
||||
cp__ATTRIBUTE__ = __ATTRIBUTE__.toCharArray(),
|
||||
cp__DECLSPEC = __DECLSPEC.toCharArray(),
|
||||
cp__ALIGNOF = "__alignof".toCharArray(),
|
||||
cp__ATTRIBUTE = "__attribute".toCharArray(),
|
||||
cp__ASM= "__asm".toCharArray(),
|
||||
cp__ASM__= "__asm__".toCharArray(),
|
||||
cp__CONST= "__const".toCharArray(),
|
||||
cp__CONST__= "__const__".toCharArray(),
|
||||
cp__INLINE= "__inline".toCharArray(),
|
||||
cp__INLINE__= "__inline__".toCharArray(),
|
||||
cp__RESTRICT= "__restrict".toCharArray(),
|
||||
cp__RESTRICT__= "__restrict__".toCharArray(),
|
||||
cp__VOLATILE= "__volatile".toCharArray(),
|
||||
cp__VOLATILE__= "__volatile__".toCharArray(),
|
||||
cp__SIGNED= "__signed".toCharArray(),
|
||||
cp__SIGNED__= "__signed__".toCharArray(),
|
||||
cp__TYPEOF= "__typeof".toCharArray(),
|
||||
cp__ALIGNOF = "__alignof".toCharArray(),
|
||||
cp__ATTRIBUTE = "__attribute".toCharArray(),
|
||||
cp__ASM= "__asm".toCharArray(),
|
||||
cp__ASM__= "__asm__".toCharArray(),
|
||||
cp__CONST= "__const".toCharArray(),
|
||||
cp__CONST__= "__const__".toCharArray(),
|
||||
cp__INLINE= "__inline".toCharArray(),
|
||||
cp__INLINE__= "__inline__".toCharArray(),
|
||||
cp__RESTRICT= "__restrict".toCharArray(),
|
||||
cp__RESTRICT__= "__restrict__".toCharArray(),
|
||||
cp__VOLATILE= "__volatile".toCharArray(),
|
||||
cp__VOLATILE__= "__volatile__".toCharArray(),
|
||||
cp__SIGNED= "__signed".toCharArray(),
|
||||
cp__SIGNED__= "__signed__".toCharArray(),
|
||||
cp__TYPEOF= "__typeof".toCharArray(),
|
||||
cp__TYPEOF__= "__typeof__".toCharArray();
|
||||
|
||||
/** @since 5.3 */
|
||||
public static final char[]
|
||||
public static final char[]
|
||||
cp__has_nothrow_assign= "__has_nothrow_assign".toCharArray(),
|
||||
cp__has_nothrow_copy= "__has_nothrow_copy".toCharArray(),
|
||||
cp__has_nothrow_constructor= "__has_nothrow_constructor".toCharArray(),
|
||||
|
@ -70,7 +70,7 @@ public class GCCKeywords {
|
|||
cp__is_union= "__is_union".toCharArray();
|
||||
|
||||
/** @since 5.5 */
|
||||
public static final char[]
|
||||
public static final char[]
|
||||
cp__float128= __FLOAT128.toCharArray(),
|
||||
cp__int128= __INT128.toCharArray(),
|
||||
cp__is_literal_type= "__is_literal_type".toCharArray(),
|
||||
|
|
Loading…
Add table
Reference in a new issue