From daed340b57210cd3dd126ac7f0fa6348819f42ec Mon Sep 17 00:00:00 2001 From: Daniel Dunbar Date: Mon, 31 Oct 2011 22:50:41 +0000 Subject: [PATCH] warnings: Fix several uses of trailing comma on enumeration extensions. llvm-svn: 143380 --- lldb/include/lldb/Core/MappedHash.h | 2 +- lldb/source/Plugins/Process/Utility/RegisterContextDarwin_arm.h | 2 +- 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 72158e010f34..adf372a11504 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 cc0f1829b5a3..eba341c13cc1 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 d3b83e0bcfa2..43b3830726a6 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