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
This commit is contained in:
Sean Callanan 2013-05-23 01:53:54 +00:00
parent 1d209d075b
commit ed3fceaaa1
1 changed files with 2 additions and 2 deletions

View File

@ -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,