From 8995b830aaa3f951be1347f8db1d03a4ae2b8127 Mon Sep 17 00:00:00 2001 From: Sergey Prigogin Date: Fri, 28 Dec 2012 13:35:51 -0800 Subject: [PATCH] Cosmetics. --- .../eclipse/cdt/core/parser/GCCKeywords.java | 44 +++++++++---------- 1 file changed, 22 insertions(+), 22 deletions(-) diff --git a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/parser/GCCKeywords.java b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/parser/GCCKeywords.java index a774647e288..730517af80d 100644 --- a/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/parser/GCCKeywords.java +++ b/core/org.eclipse.cdt.core/parser/org/eclipse/cdt/core/parser/GCCKeywords.java @@ -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(),