From ed3fceaaa107bec7c514014ca08628ff5f1c6a30 Mon Sep 17 00:00:00 2001 From: Sean Callanan Date: Thu, 23 May 2013 01:53:54 +0000 Subject: [PATCH] GCC gets confused by enums in bitfields, so I removed the bitfields. This should be conforming C++11, though, cf. C++03 9.6(3): " A bit-field shall have integral or enumeration type (3.9.1). " llvm-svn: 182545 --- lldb/include/lldb/Expression/IRMemoryMap.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/include/lldb/Expression/IRMemoryMap.h b/lldb/include/lldb/Expression/IRMemoryMap.h index e2a3f07ad8d9..affe19350e3f 100644 --- a/lldb/include/lldb/Expression/IRMemoryMap.h +++ b/lldb/include/lldb/Expression/IRMemoryMap.h @@ -87,8 +87,8 @@ private: DataBufferHeap m_data; ///< Flags - AllocationPolicy m_policy : 2; - bool m_leak : 1; + AllocationPolicy m_policy; + bool m_leak; public: Allocation (lldb::addr_t process_alloc, lldb::addr_t process_start,