Skip to content

Commit 24de513

Browse files
author
Daniel Kroening
authored
Merge pull request diffblue#2474 from tautschnig/vs-identifier
Remove unused parameter identifier
2 parents e14f2f2 + 5703504 commit 24de513

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/goto-diff/unified_diff.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,6 @@ void unified_difft::output_diff(
145145
}
146146

147147
unified_difft::differencest unified_difft::lcss(
148-
const irep_idt &identifier,
149148
const goto_programt &old_goto_program,
150149
const goto_programt &new_goto_program)
151150
{
@@ -323,7 +322,7 @@ void unified_difft::unified_diff(
323322
new_goto_program.instructions.size(), differencet::NEW);
324323
}
325324
else
326-
differences=lcss(identifier, old_goto_program, new_goto_program);
325+
differences=lcss(old_goto_program, new_goto_program);
327326
}
328327

329328
bool unified_difft::operator()()

src/goto-diff/unified_diff.h

-1
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ class unified_difft
6262
const goto_programt &new_goto_program);
6363

6464
static differencest lcss(
65-
const irep_idt &identifier,
6665
const goto_programt &old_goto_program,
6766
const goto_programt &new_goto_program);
6867

0 commit comments

Comments
 (0)