Skip to content

Commit 51fef12

Browse files
[lldb] Add const& to InstructionList parameter (#169342)
1 parent f31e1cf commit 51fef12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lldb/source/Plugins/UnwindAssembly/InstEmulation/UnwindAssemblyInstEmulation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ static void DumpUnwindRowsToLog(Log *log, AddressRange range,
6363
}
6464

6565
static void DumpInstToLog(Log *log, Instruction &inst,
66-
InstructionList inst_list) {
66+
const InstructionList &inst_list) {
6767
if (!log || !log->GetVerbose())
6868
return;
6969
const bool show_address = true;

0 commit comments

Comments
 (0)