forked from OSchip/llvm-project
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:
parent
1d209d075b
commit
ed3fceaaa1
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue