diff --git a/lldb/include/lldb/Symbol/SymbolFile.h b/lldb/include/lldb/Symbol/SymbolFile.h index 34a0a64eb078..a1c1688278fe 100644 --- a/lldb/include/lldb/Symbol/SymbolFile.h +++ b/lldb/include/lldb/Symbol/SymbolFile.h @@ -38,7 +38,7 @@ public: Blocks = (1 << 11), GlobalVariables = (1 << 12), LocalVariables = (1 << 13), - VariableTypes = (1 << 14), + VariableTypes = (1 << 14) }; static SymbolFile * diff --git a/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h b/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h index 317945a39c11..1833739901a5 100644 --- a/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h +++ b/lldb/source/Plugins/SymbolFile/DWARF/HashedNameToDIE.h @@ -103,7 +103,7 @@ struct DWARFMappedHash // Always set for C++, only set for ObjC if this is the // @implementation for class - eTypeFlagClassIsImplementation = ( 1u << 1 ), + eTypeFlagClassIsImplementation = ( 1u << 1 ) }; struct Atom diff --git a/lldb/tools/debugserver/source/RNBRemote.h b/lldb/tools/debugserver/source/RNBRemote.h index 3df4b9ba0d89..25d04a35eeb5 100644 --- a/lldb/tools/debugserver/source/RNBRemote.h +++ b/lldb/tools/debugserver/source/RNBRemote.h @@ -110,7 +110,7 @@ public: allocate_memory, // '_M' deallocate_memory, // '_m' - unknown_type, + unknown_type } PacketEnum; typedef rnb_err_t (RNBRemote::*HandlePacketCallback)(const char *p);