Skip to content
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