diff options
author | Daniel Dunbar <daniel@zuster.org> | 2011-10-31 22:50:41 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2011-10-31 22:50:41 +0000 |
commit | daed340b57210cd3dd126ac7f0fa6348819f42ec (patch) | |
tree | f4b0393c97abcbb980d66d8f7905b5564483804e | |
parent | f9f7032b5df26ecddb07ecf79ed5e0dbad12e3a8 (diff) | |
download | bcm5719-llvm-daed340b57210cd3dd126ac7f0fa6348819f42ec.tar.gz bcm5719-llvm-daed340b57210cd3dd126ac7f0fa6348819f42ec.zip |
warnings: Fix several uses of trailing comma on enumeration extensions.
llvm-svn: 143380
-rw-r--r-- | lldb/include/lldb/Core/MappedHash.h | 2 | ||||
-rw-r--r-- | lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.h | 2 | ||||
-rw-r--r-- | lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lldb/include/lldb/Core/MappedHash.h b/lldb/include/lldb/Core/MappedHash.h index 72158e010f3..adf372a1150 100644 --- a/lldb/include/lldb/Core/MappedHash.h +++ b/lldb/include/lldb/Core/MappedHash.h @@ -20,7 +20,7 @@ public: enum HashFunctionType { - eHashFunctionDJB = 0u, // Daniel J Bernstein hash function that is also used by the ELF GNU_HASH sections + eHashFunctionDJB = 0u // Daniel J Bernstein hash function that is also used by the ELF GNU_HASH sections }; diff --git a/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.h b/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.h index cc0f1829b5a..eba341c13cc 100644 --- a/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.h +++ b/lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.h @@ -163,7 +163,7 @@ protected: GPRRegSet = 1, FPURegSet = 2, EXCRegSet = 3, - DBGRegSet = 4, + DBGRegSet = 4 }; enum diff --git a/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h b/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h index d3b83e0bcfa..43b3830726a 100644 --- a/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h +++ b/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h @@ -29,7 +29,7 @@ struct DWARFMappedHash eAtomTypeCUOffset = 2u, // DIE offset of the compiler unit header that contains the item in question eAtomTypeTag = 3u, // DW_TAG_xxx value, should be encoded as DW_FORM_data1 (if no tags exceed 255) or DW_FORM_data2 eAtomTypeNameFlags = 4u, // Flags from enum NameFlags - eAtomTypeTypeFlags = 5u, // Flags from enum TypeFlags + eAtomTypeTypeFlags = 5u // Flags from enum TypeFlags }; struct Atom |