Skip to content

Commit e504e80

Browse files
committed
Remove unused parameter in string abstraction
1 parent 7c1de91 commit e504e80

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/goto-programs/string_abstraction.cpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ goto_programt::targett string_abstractiont::abstract(
469469
break;
470470

471471
case FUNCTION_CALL:
472-
abstract_function_call(dest, it);
472+
abstract_function_call(it);
473473
break;
474474

475475
case RETURN:
@@ -528,7 +528,6 @@ goto_programt::targett string_abstractiont::abstract_assign(
528528
}
529529

530530
void string_abstractiont::abstract_function_call(
531-
goto_programt &dest,
532531
goto_programt::targett target)
533532
{
534533
code_function_callt &call=to_code_function_call(target->code);

src/goto-programs/string_abstraction.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ class string_abstractiont:public messaget
8787
const exprt &lhs,
8888
const exprt &rhs);
8989

90-
void abstract_function_call(goto_programt &dest, goto_programt::targett it);
90+
void abstract_function_call(goto_programt::targett it);
9191

9292
goto_programt::targett value_assignments(goto_programt &dest,
9393
goto_programt::targett it,

0 commit comments

Comments
 (0)