Skip to content

Remove unused parameter in string abstraction #2477

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
Jun 26, 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-programs/string_abstraction.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@ goto_programt::targett string_abstractiont::abstract(
break;

case FUNCTION_CALL:
abstract_function_call(dest, it);
abstract_function_call(it);
break;

case RETURN:
Expand Down Expand Up @@ -528,7 +528,6 @@ goto_programt::targett string_abstractiont::abstract_assign(
}

void string_abstractiont::abstract_function_call(
goto_programt &dest,
goto_programt::targett target)
{
code_function_callt &call=to_code_function_call(target->code);
Expand Down
2 changes: 1 addition & 1 deletion src/goto-programs/string_abstraction.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class string_abstractiont:public messaget
const exprt &lhs,
const exprt &rhs);

void abstract_function_call(goto_programt &dest, goto_programt::targett it);
void abstract_function_call(goto_programt::targett it);

goto_programt::targett value_assignments(goto_programt &dest,
goto_programt::targett it,
Expand Down