Skip to content

Remove unused parameter identifier #2474

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 6, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/goto-diff/unified_diff.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,6 @@ void unified_difft::output_diff(
}

unified_difft::differencest unified_difft::lcss(
const irep_idt &identifier,
const goto_programt &old_goto_program,
const goto_programt &new_goto_program)
{
Expand Down Expand Up @@ -323,7 +322,7 @@ void unified_difft::unified_diff(
new_goto_program.instructions.size(), differencet::NEW);
}
else
differences=lcss(identifier, old_goto_program, new_goto_program);
differences=lcss(old_goto_program, new_goto_program);
}

bool unified_difft::operator()()
Expand Down
1 change: 0 additions & 1 deletion src/goto-diff/unified_diff.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,6 @@ class unified_difft
const goto_programt &new_goto_program);

static differencest lcss(
const irep_idt &identifier,
const goto_programt &old_goto_program,
const goto_programt &new_goto_program);

Expand Down