File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -21,8 +21,6 @@ using lldb::SBCommandReturnObject;
2121using lldb::SBDebugger;
2222using lldb::SBError;
2323using lldb::SBExpressionOptions;
24- using lldb::SBMemoryRegionInfo;
25- using lldb::SBMemoryRegionInfoList;
2624using lldb::SBStream;
2725using lldb::SBTarget;
2826using lldb::SBValue;
@@ -905,8 +903,8 @@ void LLScan::ScanMemoryRanges(FindJSObjectsVisitor& v) {
905903 head = head->next_ ;
906904
907905#else // LLDB_SBMemoryRegionInfoList_h_
908- SBMemoryRegionInfoList memory_regions = process_.GetMemoryRegions ();
909- SBMemoryRegionInfo region_info;
906+ lldb:: SBMemoryRegionInfoList memory_regions = process_.GetMemoryRegions ();
907+ lldb:: SBMemoryRegionInfo region_info;
910908
911909 for (uint32_t i = 0 ; i < memory_regions.GetSize (); ++i) {
912910 memory_regions.GetMemoryRegionAtIndex (i, region_info);
You can’t perform that action at this time.
0 commit comments