[lldb] Fix some accidental IntervalMap copies

I made that type non-copyable in some cases in dc4f9f0368
This commit is contained in:
Benjamin Kramer
2022-02-19 20:55:20 +01:00
parent dfa9716dd7
commit 05cd79d599

View File

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