Skip to content

Commit e2c7ae7

Browse files
NathanJPhillipstautschnig
authored andcommitted
Moved parameters to match header file
1 parent 2ee5a33 commit e2c7ae7

File tree

2 files changed

+3
-9
lines changed

2 files changed

+3
-9
lines changed

src/goto-symex/auto_objects.cpp

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,7 @@ exprt goto_symext::make_auto_object(const typet &type, statet &state)
3434
return symbol_exprt(symbol.name, symbol.type);
3535
}
3636

37-
void goto_symext::initialize_auto_object(
38-
const exprt &expr,
39-
statet &state)
37+
void goto_symext::initialize_auto_object(const exprt &expr, statet &state)
4038
{
4139
const typet &type=ns.follow(expr.type());
4240

@@ -77,9 +75,7 @@ void goto_symext::initialize_auto_object(
7775
}
7876
}
7977

80-
void goto_symext::trigger_auto_object(
81-
const exprt &expr,
82-
statet &state)
78+
void goto_symext::trigger_auto_object(const exprt &expr, statet &state)
8379
{
8480
if(expr.id()==ID_symbol &&
8581
expr.get_bool(ID_C_SSA_symbol))

src/goto-symex/symex_assign.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,7 @@ Author: Daniel Kroening, [email protected]
2121

2222
// #define USE_UPDATE
2323

24-
void goto_symext::symex_assign(
25-
statet &state,
26-
const code_assignt &code)
24+
void goto_symext::symex_assign(statet &state, const code_assignt &code)
2725
{
2826
exprt lhs=code.lhs();
2927
exprt rhs=code.rhs();

0 commit comments

Comments
 (0)