[lldb] Fix some accidental IntervalMap copies
I made that type non-copyable in some cases in dc4f9f0368
This commit is contained in:
@@ -1679,8 +1679,8 @@ class VMAddressProvider {
|
||||
ObjectFile::Type ObjectType;
|
||||
addr_t NextVMAddress = 0;
|
||||
VMMap::Allocator Alloc;
|
||||
VMMap Segments = VMMap(Alloc);
|
||||
VMMap Sections = VMMap(Alloc);
|
||||
VMMap Segments{Alloc};
|
||||
VMMap Sections{Alloc};
|
||||
lldb_private::Log *Log = GetLog(LLDBLog::Modules);
|
||||
size_t SegmentCount = 0;
|
||||
std::string SegmentName;
|
||||
|
||||
Reference in New Issue
Block a user