mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-20 06:35:50 +02:00
Cosmetics.
This commit is contained in:
parent
d1b91caff2
commit
35d1af1f50
1 changed files with 17 additions and 17 deletions
|
@ -28,30 +28,30 @@ public class GCCKeywords {
|
|||
/** Experimental constant. May change without notice. */
|
||||
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(),
|
||||
|
|
Loading…
Add table
Reference in a new issue