Skip to content

Commit 3ce9239

Browse files
author
svorenova
committed
Fixing clang issues
1 parent 9752647 commit 3ce9239

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

src/goto-symex/symex_function_call.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ void goto_symext::symex_function_call_code(
277277
}
278278

279279
// read the arguments -- before the locality renaming
280-
exprt::operandst arguments=call.arguments();
280+
exprt::operandst arguments = call.arguments();
281281
for(auto &a : arguments)
282282
state.rename(a, ns);
283283

src/goto-symex/symex_target.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ class symex_targett
105105
virtual void function_call(
106106
const exprt &guard,
107107
const irep_idt &identifier,
108-
const sourcet &source)=0;
108+
const sourcet &source) = 0;
109109

110110
// record return from a function
111111
virtual void function_return(

src/goto-symex/symex_target_equation.cpp

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -690,7 +690,6 @@ void symex_target_equationt::convert_io(
690690
}
691691
}
692692

693-
694693
void symex_target_equationt::merge_ireps(SSA_stept &SSA_step)
695694
{
696695
merge_irep(SSA_step.guard);

0 commit comments

Comments
 (0)