diff options
author | Ian Lance Taylor <ian@airs.com> | 2009-11-03 15:12:03 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 2009-11-03 15:12:03 +0000 |
commit | f77507bd9894eb70b02c2c5ac4adc209443c53c0 (patch) | |
tree | 293c7910e88f13a67c6f70f5ebf66d9706c26f6a /elfcpp | |
parent | 03c1939be4816e608837361d3e958d5ea0ba30a8 (diff) | |
download | gdb-f77507bd9894eb70b02c2c5ac4adc209443c53c0.zip gdb-f77507bd9894eb70b02c2c5ac4adc209443c53c0.tar.gz gdb-f77507bd9894eb70b02c2c5ac4adc209443c53c0.tar.bz2 |
* elfcpp.h: Remove trailing commas from enum definitions.
Diffstat (limited to 'elfcpp')
-rw-r--r-- | elfcpp/ChangeLog | 4 | ||||
-rw-r--r-- | elfcpp/elfcpp.h | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/elfcpp/ChangeLog b/elfcpp/ChangeLog index 2439880..d48dcfb 100644 --- a/elfcpp/ChangeLog +++ b/elfcpp/ChangeLog @@ -1,3 +1,7 @@ +2009-11-03 Ian Lance Taylor <iant@google.com> + + * elfcpp.h: Remove trailing commas from enum definitions. + 2009-10-30 Doug Kwan <dougkwan@google.com> * arm.h (EF_ARM_BE8, EF_ARM_EABIMASK, EF_ARM_EABI_UNKNOWN, diff --git a/elfcpp/elfcpp.h b/elfcpp/elfcpp.h index 4ace47c..0b2c871 100644 --- a/elfcpp/elfcpp.h +++ b/elfcpp/elfcpp.h @@ -17,7 +17,7 @@ // combinations without any restriction coming from the use of this // file. (The Library Public License restrictions do apply in other // respects; for example, they cover modification of the file, and -/// distribution when not linked into a combined executable.) +// distribution when not linked into a combined executable.) // This program is distributed in the hope that it will be useful, but // WITHOUT ANY WARRANTY; without even the implied warranty of @@ -390,7 +390,7 @@ enum SHT // Link editor is to sort the entries in this section based on the // address specified in the associated symbol table entry. - SHT_ORDERED = 0x7fffffff, + SHT_ORDERED = 0x7fffffff }; // The valid bit flags found in the Shdr sh_flags field. @@ -514,7 +514,7 @@ enum STT // ARM: a THUMB function. This is not defined in ARM ELF Specification but // used by the GNU tool-chain. - STT_ARM_TFUNC = 13, + STT_ARM_TFUNC = 13 }; inline STB @@ -755,7 +755,7 @@ enum DF_1 DF_1_INTERPOSE = 0x400, DF_1_NODEFLIB = 0x800, DF_1_NODUMP = 0x1000, - DF_1_CONLFAT = 0x2000, + DF_1_CONLFAT = 0x2000 }; // Version numbers which appear in the vd_version field of a Verdef |