Skip to content

Commit 3703974

Browse files
author
Daniel Kroening
authored
Merge pull request #2477 from tautschnig/vs-string-abstraction
Remove unused parameter in string abstraction
2 parents cf797da + e504e80 commit 3703974

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

src/goto-programs/string_abstraction.cpp

Lines changed: 1 addition & 2 deletions
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

Lines changed: 1 addition & 1 deletion
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)