Skip to content

Commit ed98fd7

Browse files
authored
Merge pull request diffblue#2412 from tautschnig/vs-build
Remove unused parameter from local_bitvector_analysist::build
2 parents 16fa26d + a1be6c8 commit ed98fd7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/analyses/local_bitvector_analysis.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ local_bitvector_analysist::flagst local_bitvector_analysist::get_rec(
241241
return flagst::mk_unknown();
242242
}
243243

244-
void local_bitvector_analysist::build(const goto_functiont &goto_function)
244+
void local_bitvector_analysist::build()
245245
{
246246
if(cfg.nodes.empty())
247247
return;

src/analyses/local_bitvector_analysis.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class local_bitvector_analysist
3131
locals(_goto_function),
3232
cfg(_goto_function.body)
3333
{
34-
build(_goto_function);
34+
build();
3535
}
3636

3737
void output(
@@ -176,7 +176,7 @@ class local_bitvector_analysist
176176
const exprt &src);
177177

178178
protected:
179-
void build(const goto_functiont &goto_function);
179+
void build();
180180

181181
typedef std::stack<unsigned> work_queuet;
182182

0 commit comments

Comments
 (0)