[Lldb-commits] [lldb] r143380 - in /lldb/trunk: include/lldb/Core/MappedHash.h source/Plugins/Process/Utility/RegisterContextDarwin_arm.h source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h
Daniel Dunbar
daniel at zuster.org
Mon Oct 31 15:50:41 PDT 2011
Author: ddunbar
Date: Mon Oct 31 17:50:41 2011
New Revision: 143380
URL: http://llvm.org/viewvc/llvm-project?rev=143380&view=rev
Log:
warnings: Fix several uses of trailing comma on enumeration extensions.
Modified:
lldb/trunk/include/lldb/Core/MappedHash.h
lldb/trunk/source/Plugins/Process/Utility/RegisterContextDarwin_arm.h
lldb/trunk/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h
Modified: lldb/trunk/include/lldb/Core/MappedHash.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/include/lldb/Core/MappedHash.h?rev=143380&r1=143379&r2=143380&view=diff
==============================================================================
--- lldb/trunk/include/lldb/Core/MappedHash.h (original)
+++ lldb/trunk/include/lldb/Core/MappedHash.h Mon Oct 31 17:50:41 2011
@@ -20,7 +20,7 @@
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
};
Modified: lldb/trunk/source/Plugins/Process/Utility/RegisterContextDarwin_arm.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/Process/Utility/RegisterContextDarwin_arm.h?rev=143380&r1=143379&r2=143380&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/Process/Utility/RegisterContextDarwin_arm.h (original)
+++ lldb/trunk/source/Plugins/Process/Utility/RegisterContextDarwin_arm.h Mon Oct 31 17:50:41 2011
@@ -163,7 +163,7 @@
GPRRegSet = 1,
FPURegSet = 2,
EXCRegSet = 3,
- DBGRegSet = 4,
+ DBGRegSet = 4
};
enum
Modified: lldb/trunk/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h?rev=143380&r1=143379&r2=143380&view=diff
==============================================================================
--- lldb/trunk/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h (original)
+++ lldb/trunk/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h Mon Oct 31 17:50:41 2011
@@ -29,7 +29,7 @@
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
More information about the lldb-commits
mailing list